to zmpcoming
不是.我的转换代码如下:
      int high = 123;
      int low  = 456;      byte h[]=new byte[4];
      h=IntToByteArray(high);      byte l[]=new byte[4];
      l=IntToByteArray(low);      byte n[]=new byte[8];      System.arraycopy(h,0,n,0,4);
      System.arraycopy(l,0,n,4,4);      num=BytesToLong(n);不知我的对不对?