0

我正在尝试显示文件头中应该是文本的内容(文件的其余部分是二进制文件)但是当我打印 strtemp 时,我得到了这个:

strTemp: ??????

这是代码。

String fileName = "test.file";

URI logUri = new File(fileName).getAbsoluteFile().toURI();  

BufferedInputStream in = new BufferedInputStream(new FileInputStream(new File(logUri))); 

byte[] btemp = new byte[14];
in.read(btemp);

String strtemp = "";

for(int i = 0; i < btemp.length; i+= 2) {
    strtemp += String.valueOf((char)(((btemp[i]&0x00FF)<<8) + (btemp[i+1]&0x00FF)));
}

System.out.println("strTemp: " + strtemp);

如何让 strtemp 成为文件中的内容?并正确显示?

4

2 回答 2

3

http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html的构造函数摘要中可以看出,您可以直接从字节初始化字符串。

您还应该提供源文件中的字符集。

于 2012-06-12T08:49:39.343 回答
0

对于这种需要,您可以使用 ByteBuffer 和 CharBuffer :

    FileChannel channel = new RandomAccessFile("/home/alain/toto.txt", "r").getChannel();
    //Map the 14 first bytes
    ByteBuffer buffer = channel.map(FileChannel.MapMode.READ_ONLY, 0, 14);
    //Set your charset here
    Charset chars = Charset.forName("ISO-8859-1");
    CharBuffer cbuf = chars.decode(buffer);
    System.out.println("str = " + cbuf.toString());
于 2012-06-12T09:01:23.137 回答