摘要: 各数组间相互转换: int[] data = {1, 2, 3, 4, 5, 6, 7}; 1.int[] 转换 List<Integer>List<Integer> lists = Arrays.stream(data).boxed().collect(Collectors.toList());( 阅读全文
posted @ 2023-09-22 16:53 学而时习 阅读(94) 评论(0) 推荐(0) 编辑
摘要: CRC校验码 public static string CRCCheck(string val) { val = val.TrimEnd(' '); string[] spva = val.Split(' '); byte[] bufData = new byte[spva.Length + 2]; 阅读全文
posted @ 2023-09-22 15:55 学而时习 阅读(49) 评论(0) 推荐(0) 编辑