6

我正在使用 Java 将字节数组写入文件。当我在十六进制编辑器中打开我的文件时,我并不总是看到我期望在那里的字节。这是我的示例代码和输出文件的内容:

public static void main(String[] args) 
{
    File file = new File( "c:\\temp\\file.txt" );
    file.delete();
    FileOutputStream outStream = null;
    try 
    {
        file.createNewFile();
    } catch (IOException e) 
    {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    try 
    {
        outStream = new FileOutputStream( file );
    } catch (FileNotFoundException e) 
    {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    try 
    {
    outStream.write( new byte[] { 0x14, 0x00, 0x1F, 0x50 } );

    } catch (IOException e) 
    {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

当我在十六进制编辑器中打开文件时,我得到00 9e f3 04的是内容而不是我发送的字节。我的结果似乎不一致。有时我得到预期的结果,有时我没有。


这将输出正确的数据:

outStream.write( new byte[] { 0x14 , 0x00, 0x1F, 0x50, (byte) 0xE0, 0x4F, (byte) 0xD0, 0x20, (byte) 0xEA, 0x3A, 0x69, 0x10, (byte) 0xA2 , (byte) 0xD8, 0x08, 0x00, 0x2B } );

文件内容为:

14 00 1f 50 e0 4f d0 20 ea 3a 69 10 a2 d8 08 00 2b

如果我向该数组添加一个字节,那么它会失败。

outStream.write( new byte[] { 0x14 , 0x00, 0x1F, 0x50, (byte) 0xE0, 0x4F, (byte) 0xD0, 0x20, (byte) 0xEA, 0x3A, 0x69, 0x10, (byte) 0xA2 , (byte) 0xD8, 0x08, 0x00, 0x2B, 0x30 } );

文件内容现在是:

14 e5 80 9f e4 bf a0 e2 83 90 e3 ab aa e1 81 a9 ed a2 a2 08 e3 80 ab

我也遇到了这个问题:

outStream.write( new byte[] { 0x4C, 0x00, 0x00, 0x00 } );

文件内容为:

4c 00

不写入最后两个字节。


outStream.write( new byte[] { 0x4C, 0x00, 0x00, 0x00, 0x01 } );

这将产生预期的结果。文件内容为:

4c 00 00 00 01

我觉得我缺少一些关于将数据写入文件的方式的基本知识。将字节数组写入文件时如何获得一致的结果?

4

2 回答 2

1

我完全编译了您的代码,并在输出文件中得到了预期的结果。我认为您的记事本(或您用来检查文件的任何其他程序)很可能没​​有向您显示您编写的某些字节(例如,我的 Mac 上的 textedit 拒绝显示可能的字节列表) . 如果这正是您使用的方法,我猜是其他一些东西(如记事本)失败,而不是您的代码。正如您所提到的,有时您会觉得有些字节根本没有写入。也许尝试双胞胎方法public void write(byte[] b, int off, int len)可以确保您要输入多少字节。

于 2013-06-14T09:20:12.707 回答
0

我测试了你的代码,对我来说并没有失败。您是否在服务器之间传输文件?由于它是一个 .txt 文件,您可能会进行一些自动文本转换,您是否尝试过不使用扩展名?

另外,请确保在完成后关闭资源。

于 2013-06-14T07:59:11.537 回答