java – 将小Endian文件转换成大Endian

前端之家收集整理的这篇文章主要介绍了java – 将小Endian文件转换成大Endian前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将liitle Endian二进制文件转换成大Endian二进制文件.我有一个用C编写的二进制二进制文件,我用 Java中的DataInputStream读取这个文件,读入大印度格式.i也看过ByteBuffer类,但是不知道如何使用它来获得我想要的结果.请帮忙.

非常感谢

解决方法

打开NIO FileChannel:
FileInputStream fs = new FileInputStream("myfile.bin");
FileChannel fc = fs.getChannel();

设置ByteBuffer endianness(由[get | put]使用)Int(),[get | put] Long(),[get | put] Short(),[get | put] Double()

ByteBuffer buf = ByteBuffer.allocate(0x10000);
buf.order(ByteOrder.LITTLE_ENDIAN); // or ByteOrder.BIG_ENDIAN

从FileChannel读取到ByteBuffer

fc.read(buf);
buf.flip();
// here you take data from the buffer by either of getShort(),getInt(),getLong(),getDouble(),or get(byte[],offset,len)
buf.compact();

要正确处理输入的字节顺序,您需要准确地知道文件中存储的内容以及以什么顺序(所谓的协议或格式).

原文链接:https://www.f2er.com/java/126449.html

猜你在找的Java相关文章