摘要:
各数组间相互转换: int[] data = {1, 2, 3, 4, 5, 6, 7}; 1.int[] 转换 List<Integer>List<Integer> lists = Arrays.stream(data).boxed().collect(Collectors.toList());( 阅读全文
摘要:
CRC校验码 public static string CRCCheck(string val) { val = val.TrimEnd(' '); string[] spva = val.Split(' '); byte[] bufData = new byte[spva.Length + 2]; 阅读全文