发布网友 发布时间:2022-05-16 18:25
共4个回答
热心网友 时间:2023-11-18 13:01
char[] str = new char[17];long[] l = new long[17];for (int i = 0,len=str.length; i < len; i++) { l[i]=str[i];热心网友 时间:2023-11-18 13:01
public static long[] byteArrayToIntArray(byte[] b, int offset) { long[] arr= new long[b.length]; for (int i = 0; i < 4; i++) { int shift= (4 - 1 - i) * 8; arr[i] = (b[i + offset] & 0x000000FF) << shift; } return arr; }热心网友 时间:2023-11-18 13:02
挨个遍历插入;不知道是什么地方的需求热心网友 时间:2023-11-18 13:02
关注中 等待解决方案