자바에서byte,byte수조와 int,long의 변환 상세 설명

4688 단어 javaintbyte 배열
1. Java에서 byte와 int 사이의 변환 소스:

//byte   int   
public static byte intToByte(int x) { 
 return (byte) x; 
} 
 
public static int byteToInt(byte b) { 
 //Java   byte  ;  0xFF   
 return b & 0xFF; 
} 
테스트 코드:

//  int   byte 
int int0 = 234; 
byte byte0 = intToByte(int0); 
System.out.println("byte0=" + byte0);//byte0=-22 
//  byte   int 
int int1 = byteToInt(byte0); 
System.out.println("int1=" + int1);//int1=234 
2. Java에서 byte 배열과 int 사이의 변환 원본:

//byte   int   
public static int byteArrayToInt(byte[] b) { 
 return b[3] & 0xFF | 
  (b[2] & 0xFF) << 8 | 
  (b[1] & 0xFF) << 16 | 
  (b[0] & 0xFF) << 24; 
} 
 
public static byte[] intToByteArray(int a) { 
 return new byte[] { 
 (byte) ((a >> 24) & 0xFF), 
 (byte) ((a >> 16) & 0xFF), 
 (byte) ((a >> 8) & 0xFF), 
 (byte) (a & 0xFF) 
 }; 
} 
테스트 코드:

//  int   byte   
int int2 = 1417; 
byte[] bytesInt = intToByteArray(int2); 
System.out.println("bytesInt=" + bytesInt);//bytesInt=[B@de6ced 
//  byte   int 
int int3 = byteArrayToInt(bytesInt); 
System.out.println("int3=" + int3);//int3=1417 
3. Java에서 byte 배열과 long 사이의 변환 원본:

private static ByteBuffer buffer = ByteBuffer.allocate(8); 
//byte   long   
 public static byte[] longToBytes(long x) { 
 buffer.putLong(0, x); 
 return buffer.array(); 
 } 
 
 public static long bytesToLong(byte[] bytes) { 
 buffer.put(bytes, 0, bytes.length); 
 buffer.flip();//need flip 
 return buffer.getLong(); 
 } 
테스트 코드:

//  long   byte   
long long1 = 2223; 
byte[] bytesLong = longToBytes(long1); 
System.out.println("bytes=" + bytesLong);//bytes=[B@c17164 
//  byte     long 
long long2 = bytesToLong(bytesLong); 
System.out.println("long2=" + long2);//long2=2223 
4. 전체 도구 클래스 원본:

import java.nio.ByteBuffer; 
 
 
public class Test { 
 
 private static ByteBuffer buffer = ByteBuffer.allocate(8); 
 
 public static void main(String[] args) { 
  
 //  int   byte 
 int int0 = 234; 
 byte byte0 = intToByte(int0); 
 System.out.println("byte0=" + byte0);//byte0=-22 
 //  byte   int 
 int int1 = byteToInt(byte0); 
 System.out.println("int1=" + int1);//int1=234 
  
  
  
 //  int   byte   
 int int2 = 1417; 
 byte[] bytesInt = intToByteArray(int2); 
 System.out.println("bytesInt=" + bytesInt);//bytesInt=[B@de6ced 
 //  byte   int 
 int int3 = byteArrayToInt(bytesInt); 
 System.out.println("int3=" + int3);//int3=1417 
  
  
 //  long   byte   
 long long1 = 2223; 
 byte[] bytesLong = longToBytes(long1); 
 System.out.println("bytes=" + bytesLong);//bytes=[B@c17164 
 //  byte     long 
 long long2 = bytesToLong(bytesLong); 
 System.out.println("long2=" + long2);//long2=2223 
 } 
 
 
 //byte   int   
 public static byte intToByte(int x) { 
 return (byte) x; 
 } 
 
 public static int byteToInt(byte b) { 
 //Java   byte  ;  0xFF   
 return b & 0xFF; 
 } 
 
 //byte   int   
 public static int byteArrayToInt(byte[] b) { 
 return b[3] & 0xFF | 
  (b[2] & 0xFF) << 8 | 
  (b[1] & 0xFF) << 16 | 
  (b[0] & 0xFF) << 24; 
 } 
 
 public static byte[] intToByteArray(int a) { 
 return new byte[] { 
  (byte) ((a >> 24) & 0xFF), 
  (byte) ((a >> 16) & 0xFF), 
  (byte) ((a >> 8) & 0xFF), 
  (byte) (a & 0xFF) 
 }; 
 } 
 
 //byte   long   
 public static byte[] longToBytes(long x) { 
 buffer.putLong(0, x); 
 return buffer.array(); 
 } 
 
 public static long bytesToLong(byte[] bytes) { 
 buffer.put(bytes, 0, bytes.length); 
 buffer.flip();//need flip 
 return buffer.getLong(); 
 } 
 
} 
테스트 결과 실행:

byte0=-22
int1=234
bytesInt=[B@de6ced
int3=1417
bytes=[B@c17164
long2=2223
총결산
이상은 바로 이 글의 전체 내용입니다. 본고의 내용이 여러분의 학습이나 업무에 어느 정도 도움이 되고 의문이 있으면 댓글로 교류하시기 바랍니다.

좋은 웹페이지 즐겨찾기