android中int转byte[],double转byte[]

  1. static double ArryToDouble(byte[] Array,int Pos)     
  2. {   
  3.     long accum = 0;   
  4.     accum = Array[Pos+0] & 0xFF;  
  5.     accum |= (long)(Array[Pos+1] & 0xFF)<<8;  
  6.     accum |= (long)(Array[Pos+2] & 0xFF)<<16;  
  7.     accum |= (long)(Array[Pos+3] & 0xFF)<<24;  
  8.     accum |= (long)(Array[Pos+4] & 0xFF)<<32;  
  9.     accum |= (long)(Array[Pos+5] & 0xFF)<<40;  
  10.     accum |= (long)(Array[Pos+6] & 0xFF)<<48;  
  11.     accum |= (long)(Array[Pos+7] & 0xFF)<<56;  
  12.     return Double.longBitsToDouble(accum);   
  13. }  
  14.   
  15. static byte[] DoubleToArray(double Value)  
  16. {  
  17.     long accum = Double.doubleToRawLongBits(Value);  
  18.     byte[] byteRet = new byte[8];  
  19.     byteRet[0] = (byte)(accum & 0xFF);  
  20.     byteRet[1] = (byte)((accum>>8) & 0xFF);  
  21.     byteRet[2] = (byte)((accum>>16) & 0xFF);  
  22.     byteRet[3] = (byte)((accum>>24) & 0xFF);  
  23.     byteRet[4] = (byte)((accum>>32) & 0xFF);  
  24.     byteRet[5] = (byte)((accum>>40) & 0xFF);  
  25.     byteRet[6] = (byte)((accum>>48) & 0xFF);  
  26.     byteRet[7] = (byte)((accum>>56) & 0xFF);  
  27.     return byteRet;  
  28. }  
  29.   
  30. static float ArryToFloat(byte[] Array,int Pos)     
  31. {   
  32.     int accum = 0;   
  33.     accum = Array[Pos+0] & 0xFF;  
  34.     accum |= (long)(Array[Pos+1] & 0xFF)<<8;  
  35.     accum |= (long)(Array[Pos+2] & 0xFF)<<16;  
  36.     accum |= (long)(Array[Pos+3] & 0xFF)<<24;  
  37.     return Float.intBitsToFloat(accum);   
  38. }  
  39.   
  40. static byte[] FloatToArray(float Value)  
  41. {  
  42.     int accum = Float.floatToRawIntBits(Value);  
  43.     byte[] byteRet = new byte[4];  
  44.     byteRet[0] = (byte)(accum & 0xFF);  
  45.     byteRet[1] = (byte)((accum>>8) & 0xFF);  
  46.     byteRet[2] = (byte)((accum>>16) & 0xFF);  
  47.     byteRet[3] = (byte)((accum>>24) & 0xFF);  
  48.     return byteRet;  
  49. }  

  1. /**  
  2.     * 将int数值转换为占四个字节的byte数组,本方法适用于(低位在前,高位在后)的顺序。 和bytesToInt()配套使用 
  3.     * @param value  
  4.     *            要转换的int值 
  5.     * @return byte数组 
  6.     */    
  7. public static byte[] intToBytes( int value )   
  8. {   
  9.     byte[] src = new byte[4];  
  10.     src[3] =  (byte) ((value>>24) & 0xFF);  
  11.     src[2] =  (byte) ((value>>16) & 0xFF);  
  12.     src[1] =  (byte) ((value>>8) & 0xFF);    
  13.     src[0] =  (byte) (value & 0xFF);                  
  14.     return src;   
  15. }  
  16.  /**  
  17.     * 将int数值转换为占四个字节的byte数组,本方法适用于(高位在前,低位在后)的顺序。  和bytesToInt2()配套使用 
  18.     */    
  19. public static byte[] intToBytes2(int value)   
  20. {   
  21.     byte[] src = new byte[4];  
  22.     src[0] = (byte) ((value>>24) & 0xFF);  
  23.     src[1] = (byte) ((value>>16)& 0xFF);  
  24.     src[2] = (byte) ((value>>8)&0xFF);    
  25.     src[3] = (byte) (value & 0xFF);       
  26.     return src;  
  27. }  

  1. /**  
  2.     * byte数组中取int数值,本方法适用于(低位在前,高位在后)的顺序,和和intToBytes()配套使用 
  3.     *   
  4.     * @param src  
  5.     *            byte数组  
  6.     * @param offset  
  7.     *            从数组的第offset位开始  
  8.     * @return int数值  
  9.     */    
  10. public static int bytesToInt(byte[] src, int offset) {  
  11.     int value;    
  12.     value = (int) ((src[offset] & 0xFF)   
  13.             | ((src[offset+1] & 0xFF)<<8)   
  14.             | ((src[offset+2] & 0xFF)<<16)   
  15.             | ((src[offset+3] & 0xFF)<<24));  
  16.     return value;  
  17. }  
  18.   
  19.  /**  
  20.     * byte数组中取int数值,本方法适用于(低位在后,高位在前)的顺序。和intToBytes2()配套使用 
  21.     */  
  22. public static int bytesToInt2(byte[] src, int offset) {  
  23.     int value;    
  24.     value = (int) ( ((src[offset] & 0xFF)<<24)  
  25.             |((src[offset+1] & 0xFF)<<16)  
  26.             |((src[offset+2] & 0xFF)<<8)  
  27.             |(src[offset+3] & 0xFF));  
  28.     return value;  
  29. }  

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值