首页 Java java教程 Java 基础 byte[]与各种数据类型互相转换的简单示例

Java 基础 byte[]与各种数据类型互相转换的简单示例

Jan 24, 2017 pm 01:43 PM

Java 基础 byte[]与各种数据类型互相转换的简单示例

这里对byte[]类型对long,int,double,float,short,cahr,object,string类型相互转换的实例,

在socket开发过程中,通常需要将一些具体的值(这些值可能是各种Java类型)转化为byte[]类型,为此我总结了如下这个示例,贴出来,以便经常翻看:

public class TestCase { 
    
  /** 
   * short到字节数组的转换. 
   */
  public static byte[] shortToByte(short number) { 
    int temp = number; 
    byte[] b = new byte[2]; 
    for (int i = 0; i < b.length; i++) { 
      b[i] = new Integer(temp & 0xff).byteValue();// 将最低位保存在最低位 
      temp = temp >> 8;// 向右移8位 
    } 
    return b; 
  } 
  
  /** 
   * 字节数组到short的转换. 
   */
  public static short byteToShort(byte[] b) { 
    short s = 0; 
    short s0 = (short) (b[0] & 0xff);// 最低位 
    short s1 = (short) (b[1] & 0xff); 
    s1 <<= 8; 
    s = (short) (s0 | s1); 
    return s; 
  } 
    
    
  /** 
   * int到字节数组的转换. 
   */
  public static byte[] intToByte(int number) { 
    int temp = number; 
    byte[] b = new byte[4]; 
    for (int i = 0; i < b.length; i++) { 
      b[i] = new Integer(temp & 0xff).byteValue();// 将最低位保存在最低位 
      temp = temp >> 8;// 向右移8位 
    } 
    return b; 
  } 
  
  /** 
   * 字节数组到int的转换. 
   */
  public static int byteToInt(byte[] b) { 
    int s = 0; 
    int s0 = b[0] & 0xff;// 最低位 
    int s1 = b[1] & 0xff; 
    int s2 = b[2] & 0xff; 
    int s3 = b[3] & 0xff; 
    s3 <<= 24; 
    s2 <<= 16; 
    s1 <<= 8; 
    s = s0 | s1 | s2 | s3; 
    return s; 
  } 
    
    
  /** 
   * long类型转成byte数组 
   */
  public static byte[] longToByte(long number) { 
    long temp = number; 
    byte[] b = new byte[8]; 
    for (int i = 0; i < b.length; i++) { 
      b[i] = new Long(temp & 0xff).byteValue();// 将最低位保存在最低位 temp = temp 
                            // >> 8;// 向右移8位 
    } 
    return b; 
  } 
  
  /** 
   * 字节数组到long的转换. 
   */
  public static long byteToLong(byte[] b) { 
    long s = 0; 
    long s0 = b[0] & 0xff;// 最低位 
    long s1 = b[1] & 0xff; 
    long s2 = b[2] & 0xff; 
    long s3 = b[3] & 0xff; 
    long s4 = b[4] & 0xff;// 最低位 
    long s5 = b[5] & 0xff; 
    long s6 = b[6] & 0xff; 
    long s7 = b[7] & 0xff; 
  
    // s0不变 
    s1 <<= 8; 
    s2 <<= 16; 
    s3 <<= 24; 
    s4 <<= 8 * 4; 
    s5 <<= 8 * 5; 
    s6 <<= 8 * 6; 
    s7 <<= 8 * 7; 
    s = s0 | s1 | s2 | s3 | s4 | s5 | s6 | s7; 
    return s; 
  } 
    
  /** 
   * double到字节数组的转换. 
   */
  public static byte[] doubleToByte(double num) {  
    byte[] b = new byte[8];  
    long l = Double.doubleToLongBits(num);  
    for (int i = 0; i < 8; i++) {  
      b[i] = new Long(l).byteValue();  
      l = l >> 8;  
    } 
    return b; 
  } 
    
  /** 
   * 字节数组到double的转换. 
   */
  public static double getDouble(byte[] b) {  
    long m;  
    m = b[0];  
    m &= 0xff;  
    m |= ((long) b[1] << 8);  
    m &= 0xffff;  
    m |= ((long) b[2] << 16);  
    m &= 0xffffff;  
    m |= ((long) b[3] << 24);  
    m &= 0xffffffffl;  
    m |= ((long) b[4] << 32);  
    m &= 0xffffffffffl;  
    m |= ((long) b[5] << 40);  
    m &= 0xffffffffffffl;  
    m |= ((long) b[6] << 48);  
    m &= 0xffffffffffffffl;  
    m |= ((long) b[7] << 56);  
    return Double.longBitsToDouble(m);  
  } 
    
    
  /** 
   * float到字节数组的转换. 
   */
  public static void floatToByte(float x) { 
    //先用 Float.floatToIntBits(f)转换成int 
  } 
    
  /** 
   * 字节数组到float的转换. 
   */
  public static float getFloat(byte[] b) {  
    // 4 bytes  
    int accum = 0;  
    for ( int shiftBy = 0; shiftBy < 4; shiftBy++ ) {  
        accum |= (b[shiftBy] & 0xff) << shiftBy * 8;  
    }  
    return Float.intBitsToFloat(accum);  
  }  
  
   /** 
   * char到字节数组的转换. 
   */
   public static byte[] charToByte(char c){ 
    byte[] b = new byte[2]; 
    b[0] = (byte) ((c & 0xFF00) >> 8); 
    b[1] = (byte) (c & 0xFF); 
    return b; 
   } 
     
   /** 
   * 字节数组到char的转换. 
   */
   public static char byteToChar(byte[] b){ 
    char c = (char) (((b[0] & 0xFF) << 8) | (b[1] & 0xFF)); 
    return c; 
   } 
    
  /** 
   * string到字节数组的转换. 
   */
  public static byte[] stringToByte(String str) throws UnsupportedEncodingException{ 
    return str.getBytes("GBK"); 
  } 
    
  /** 
   * 字节数组到String的转换. 
   */
  public static String bytesToString(byte[] str) { 
    String keyword = null; 
    try { 
      keyword = new String(str,"GBK"); 
    } catch (UnsupportedEncodingException e) { 
      e.printStackTrace(); 
    } 
    return keyword; 
  } 
    
    
  /** 
   * object到字节数组的转换 
   */
  @Test
  public void testObject2ByteArray() throws IOException, 
      ClassNotFoundException { 
    // Object obj = ""; 
    Integer[] obj = { 1, 3, 4 }; 
  
    // // object to bytearray 
    ByteArrayOutputStream bo = new ByteArrayOutputStream(); 
    ObjectOutputStream oo = new ObjectOutputStream(bo); 
    oo.writeObject(obj); 
    byte[] bytes = bo.toByteArray(); 
    bo.close(); 
    oo.close(); 
    System.out.println(Arrays.toString(bytes)); 
  
    Integer[] intArr = (Integer[]) testByteArray2Object(bytes); 
    System.out.println(Arrays.asList(intArr)); 
  
  
    byte[] b2 = intToByte(123); 
    System.out.println(Arrays.toString(b2)); 
  
    int a = byteToInt(b2); 
    System.out.println(a); 
  
  } 
  
  /** 
   * 字节数组到object的转换. 
   */
  private Object testByteArray2Object(byte[] bytes) throws IOException, 
      ClassNotFoundException { 
    // byte[] bytes = null; 
    Object obj; 
    // bytearray to object 
    ByteArrayInputStream bi = new ByteArrayInputStream(bytes); 
    ObjectInputStream oi = new ObjectInputStream(bi); 
    obj = oi.readObject(); 
    bi.close(); 
    oi.close(); 
    System.out.println(obj); 
    return obj; 
  } 
  
}
登录后复制

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

更多Java 基础 byte[]与各种数据类型互相转换的简单示例相关文章请关注PHP中文网!

本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

热门话题

Java教程
1660
14
CakePHP 教程
1417
52
Laravel 教程
1311
25
PHP教程
1261
29
C# 教程
1234
24
公司安全软件导致应用无法运行?如何排查和解决? 公司安全软件导致应用无法运行?如何排查和解决? Apr 19, 2025 pm 04:51 PM

公司安全软件导致部分应用无法正常运行的排查与解决方法许多公司为了保障内部网络安全,会部署安全软件。...

如何将姓名转换为数字以实现排序并保持群组中的一致性? 如何将姓名转换为数字以实现排序并保持群组中的一致性? Apr 19, 2025 pm 11:30 PM

将姓名转换为数字以实现排序的解决方案在许多应用场景中,用户可能需要在群组中进行排序,尤其是在一个用...

如何使用MapStruct简化系统对接中的字段映射问题? 如何使用MapStruct简化系统对接中的字段映射问题? Apr 19, 2025 pm 06:21 PM

系统对接中的字段映射处理在进行系统对接时,常常会遇到一个棘手的问题:如何将A系统的接口字段有效地映�...

IntelliJ IDEA是如何在不输出日志的情况下识别Spring Boot项目的端口号的? IntelliJ IDEA是如何在不输出日志的情况下识别Spring Boot项目的端口号的? Apr 19, 2025 pm 11:45 PM

在使用IntelliJIDEAUltimate版本启动Spring...

Java对象如何安全地转换为数组? Java对象如何安全地转换为数组? Apr 19, 2025 pm 11:33 PM

Java对象与数组的转换:深入探讨强制类型转换的风险与正确方法很多Java初学者会遇到将一个对象转换成数组的�...

如何优雅地获取实体类变量名构建数据库查询条件? 如何优雅地获取实体类变量名构建数据库查询条件? Apr 19, 2025 pm 11:42 PM

在使用MyBatis-Plus或其他ORM框架进行数据库操作时,经常需要根据实体类的属性名构造查询条件。如果每次都手动...

如何利用Redis缓存方案高效实现产品排行榜列表的需求? 如何利用Redis缓存方案高效实现产品排行榜列表的需求? Apr 19, 2025 pm 11:36 PM

Redis缓存方案如何实现产品排行榜列表的需求?在开发过程中,我们常常需要处理排行榜的需求,例如展示一个�...

电商平台SKU和SPU数据库设计:如何兼顾用户自定义属性和无属性商品? 电商平台SKU和SPU数据库设计:如何兼顾用户自定义属性和无属性商品? Apr 19, 2025 pm 11:27 PM

电商平台SKU和SPU表设计详解本文将探讨电商平台中SKU和SPU的数据库设计问题,特别是如何处理用户自定义销售属...

See all articles