2015-04-25 66 views
0

我正在使用下面的代码从“.264”文件中读取数据。从文件中读取字节

public static void main (String[] args) throws IOException 
{ 

    BufferedReader br = null;try { 
     String sCurrentLine; 
     br = new BufferedReader(new InputStreamReader(new FileInputStream("test.264"),"ISO-8859-1")); 
     StringBuffer stringBuffer = new StringBuffer(); 
     while ((sCurrentLine = br.readLine()) != null) { 
      stringBuffer.append(sCurrentLine);  
     } 
     String tempdec = new String(asciiToHex(stringBuffer.toString())); 
     System.out.println(tempdec); 
     String asciiEquivalent = hexToASCII(tempdec); 
     BufferedWriter xx = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("C:/Users/Administrator/Desktop/yuvplayer-2.3/video dinalized/testret.264"),"ISO-8859-1")); 
     xx.write(asciiEquivalent); 
     xx.close(); 
    }catch (IOException e) { 
     e.printStackTrace(); 
    } finally { 
     try { 
      if (br != null)br.close(); 
     } catch (IOException ex) { 
      ex.printStackTrace(); 
     } 
    } 

} 

在十六进制编辑器中打开输入和输出文件会显示一些缺失值,例如: 0d(见附图)。

任何解决方案来解决这个问题?

image1 image2

+0

您在文本模式下读取二进制文件。在后者中,行由'0d'字符(CR)分隔。 – mins

+0

如何正确读取它? –

+2

简短的答案是*你打开它作为一个字节流*,这里有一个例子(它存储在内存中的字节,你需要把它们写入一个文件):[文件到字节\ [\]在Java]( http://stackoverflow.com/questions/858980/file-to-byte-in-java)。但除此之外,您应该明确自己的需求,其他解决方案可能会得到更好的优化。 – mins

回答

1

失去InputStreamReaderBufferedReader,只是对自己使用FileInputStream
没有字符编码,没有行尾,只是字节。
它的Javadoc页面是here,应该是你所需要的。

提示:如果你想阅读整个文件一次:File.length(),如

File file = new File("test.264"); 
byte[] buf = new byte[(int)file.length()]; 
// Use buf in InputStream.read()