자바에서byte,byte수조와 int,long의 변환 상세 설명
//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
총결산이상은 바로 이 글의 전체 내용입니다. 본고의 내용이 여러분의 학습이나 업무에 어느 정도 도움이 되고 의문이 있으면 댓글로 교류하시기 바랍니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
38. Java의 Leetcode 솔루션텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.