下記は1個のint値をbyte形式に変換するですが、配列に持っているintを 配列のbyteに変換するルーチンはありますか? =========================== public static byte[] fromInt(int value) { //int arraySize = Integer.SIZE / Byte.SIZE; ByteBuffer buffer = ByteBuffer.allocate(4); return buffer.putInt(value).array(); } =========================== 以上、宜しくお願いします。
↧