자바에서byte수조와 int 형식을 기반으로 변환 (두 가지 방법)
public static byte[] int2byte(int res) {
byte[] targets = new byte[4];
targets[0] = (byte) (res & 0xff);//
targets[1] = (byte) ((res >> 8) & 0xff);//
targets[2] = (byte) ((res >> 16) & 0xff);//
targets[3] = (byte) (res >>> 24);// , 。
return targets;
}
public static int byte2int(byte[] res) {
// byte 24 0x??000000, 8 0x00??0000
int targets = (res[0] & 0xff) | ((res[1] << 8) & 0xff00) // |
| ((res[2] << 24) >>> 8) | (res[3] << 24);
return targets;
}
제2종
public static void main(String[] args) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(baos);
try {
dos.writeByte(4);
dos.writeByte(1);
dos.writeByte(1);
dos.writeShort(217);
} catch (IOException e) {
e.printStackTrace();
}
byte[] aa = baos.toByteArray();
ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
DataInputStream dis = new DataInputStream(bais);
try {
System.out.println(dis.readByte());
System.out.println(dis.readByte());
System.out.println(dis.readByte());
System.out.println(dis.readShort());
} catch (IOException e) {
e.printStackTrace();
}
try {
dos.close();
dis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
이상의 이 자바에서byte수조와 int 유형의 전환(두 가지 방법)을 바탕으로 하는 것은 바로 편집자가 여러분에게 공유한 모든 내용입니다. 여러분에게 참고가 되고 저희를 많이 사랑해 주시기 바랍니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
38. Java의 Leetcode 솔루션텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.