Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个要加载的文件格式,其中包含 OpenGL 对象的原始数据。
一切都会好起来的,但是数据是小端编码的。
是否有一个 java 类可以完成 DataInputStream 的确切工作但使用小端序,还是我必须逐字节加载它并自己执行转换?
DataInputStream 只是大端。
如果你使用 ByteBuffer 你可以改变字节顺序
buffer.order(ByteOrder.LITTLE_ENDIAN);