Home Java javaTutorial A simple example of converting Java basic byte[] to various data types

A simple example of converting Java basic byte[] to various data types

Jan 24, 2017 pm 01:43 PM

Simple examples of converting Java basic byte[] to various data types Example,

During the socket development process, it is usually necessary to convert some specific values ​​(these values ​​may be various Java types) into byte[] types. To this end, I summarized the following example and posted it, In order to read it frequently:

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; 
  } 
  
}
Copy after login

Thank you for reading, I hope it can help everyone, thank you everyone for your support of this site!

For more related articles on simple examples of conversion between Java basic byte[] and various data types, please pay attention to the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, Svelte Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, Svelte Mar 07, 2025 pm 06:09 PM

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache? How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache? Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How does Java's classloading mechanism work, including different classloaders and their delegation models? How does Java's classloading mechanism work, including different classloaders and their delegation models? Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue Fixed Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue Fixed Mar 07, 2025 pm 05:52 PM

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

Node.js 20: Key Performance Boosts and New Features Node.js 20: Key Performance Boosts and New Features Mar 07, 2025 pm 06:12 PM

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

Iceberg: The Future of Data Lake Tables Iceberg: The Future of Data Lake Tables Mar 07, 2025 pm 06:31 PM

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

How can I implement functional programming techniques in Java? How can I implement functional programming techniques in Java? Mar 11, 2025 pm 05:51 PM

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability

How to Share Data Between Steps in Cucumber How to Share Data Between Steps in Cucumber Mar 07, 2025 pm 05:55 PM

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

See all articles