putInt(0xAABBCCDD); byte[] result = b.array(); ... byte[] toBytes(int i) { byte[] result = new byte[4]; result[0] = (byte) (i >> 24); ...
確定! 回上一頁