私はthisソリューションを見つけましたが、Java SEのようです。私はSystem.out.format()関数の代わりを見つけることができません。また、私はByteBuffer.allocate()
の機能をByteBuffer.allocateDirect()
に変更しました。これは正しいですか?Javaの整数からバイト配列へブラックベリーJ2ME
byte[] bytes = ByteBuffer.allocate(4).putInt(1695609641).array();
for (byte b : bytes) {
System.out.format("0x%x ", b);
}
ありがとうございます。
何[エンディアン](http://en.wikipedia.org/wiki/Endianness ) 欲しいですか? –