我必须在一个 4bytes 的文件中写入一个小端(java 使用大端)表示整数的文件,因为外部 c++ 应用程序必须读取这个文件。我的代码没有在 te 文件中写入任何内容,但 de 缓冲区中有数据。为什么?我的功能:
public static void copy(String fileOutName, boolean append){
File fileOut = new File (fileOutName);
try {
FileChannel wChannel = new FileOutputStream(fileOut, append).getChannel();
int i = 5;
ByteBuffer bb = ByteBuffer.allocate(4);
bb.order(ByteOrder.LITTLE_ENDIAN);
bb.putInt(i);
bb.flip();
int written = wChannel.write(bb);
System.out.println(written);
wChannel.close();
} catch (IOException e) {
}
}
我的电话:
copy("prueba.bin", false);