在Java中,当使用DataOutputStream写入文件时,如何定义正在写入的数据的Endian?

前端之家收集整理的这篇文章主要介绍了在Java中,当使用DataOutputStream写入文件时,如何定义正在写入的数据的Endian?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用DataOutputStream写入文件,但是我想更改数据的endian.

这就是我将字节数据写入文件的方式(默认情况下以Little end输出)

public void generateBinObjFile(String outputFile)
    try {
        // Create file

        DataOutputStream stream = new DataOutputStream(
                new FileOutputStream(outputFile));

        stream.writeShort(this.quantize(this.xComponents.get(index),//<-- Short is written in little Endian
                    this.min_x,this.max_x) - 32768);

        } // catch statements here

有没有办法可以定义字节数据用Java编写的Endian?

解决方法

你不能用DataOutputStream来做这件事,它总是使用大端.

您可以使用ByteBuffer调用order()以影响其读取和写入数据的方式.

您可以使用ByteBuffer来准备一个byte [],您将在稍后使用经典的OutputStream编写或完全转到NIO并使用任何WritableByteChannel进行写入

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

猜你在找的Java相关文章