在Java中,当使用DataOutputStream写入文件时,如何定义正在写入的数据的Endian? [英] In Java, when writing to a file with DataOutputStream, how do I define the Endian of the data being written?

查看:161
本文介绍了在Java中,当使用DataOutputStream写入文件时,如何定义正在写入的数据的Endian?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 DataOutputStream 来写入文件,但我想更改数据的字节序。

I'm using DataOutputStream to write to a file, however I want to change the endian of the data.

这就是我将字节数据写入文件的方式(默认输出为Little endian)

This is how i'm writing the byte data to the file (it outputs in Little endian by default)

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?

Is there a way i can define the Endian of how byte data is written in Java?

推荐答案

你不能用 DataOutputStream 来做这件事,它总是使用大的endian。

You can not do this with DataOutputStream, which always uses big endian.

可以使用 ByteBuffer ,您可以在其上调用 order() 影响其读写数据的方式。

You can use a ByteBuffer on which you can call order() to influence how it reads and writes data.

您可以使用 ByteBuffer 要么准备一个 byte [] ,你将在 OutputStream 编写>或完全转到NIO并使用任何 WritableByteChannel

You can use the ByteBuffer either to prepare a byte[] that you'll write with a classical OutputStream later on or go entirely to NIO and use any WritableByteChannel for the writing

这篇关于在Java中,当使用DataOutputStream写入文件时,如何定义正在写入的数据的Endian?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆