int intV = 345; ByteBuffer buff = ByteBuffer.allocate(Integer.SIZE / 8); buff.putInt(intV); buff.order(ByteOrder.BIG_ENDIAN); byte[] byteV ...
確定! 回上一頁