1

老实说,这不应该有这么多问题,但我必须遗漏一些明显的东西。

我可以很好地使用压缩文件,GZIPOutputStream但是当我尝试直接获取输入(不是从文件,而是从管道或其他东西)时,当我在我的文件上调用 gunzip -d 以查看它是否正确解压缩时,它告诉我它立即运行到文件末尾。基本上,我希望这些工作

echo foo | java Jgzip >foo.gz

或者

java Jzip <test.txt >test.gz

并且不能保证这些是字符串,所以我们正在逐字节读取。我以为我可以使用System.in and System.out,但这似乎不起作用。

public static void main (String[] args) {
    try{
        BufferedInputStream bf = new BufferedInputStream(System.in);
        byte[] buff = new byte[1024];
        int bytesRead = 0;

        GZIPOutputStream gout = new GZIPOutputStream (System.out);

        while ((bytesRead = bf.read(buff)) != -1) {
            gout.write(buff,0,bytesRead);
        }
    }
    catch (IOException ioe) {
        System.out.println("IO error.");
        System.exit(-1);    
    }
    catch (Throwable e) {
        System.out.println("Unexpected exception or error.");
        System.exit(-1);
    }
}
4

2 回答 2

1

我建议:

OutputStream gout= new GZIPOutputStream( System.out );
System.setOut( new PrintStream( gout ));              //<<<<< EDIT here
while(( bytesRead = bf.read( buff )) != -1 ) {
   gout.write(buff,0,bytesRead);
}
gout.close(); // close flush the last remaining bytes in the buffer stream
于 2012-10-27T08:07:12.037 回答
1

您忘记关闭流。只需gout.close();在 while 循环之后添加即可使其工作:

axel@loro:~/workspace/Test/bin/tmp$ ls -l
total 12
-rw-rw-r-- 1 axel axel 1328 Oct 27 10:49 JGZip.class
axel@loro:~/workspace/Test/bin/tmp$ echo "hallo" | java JGZip > test.gz
axel@loro:~/workspace/Test/bin/tmp$ ls -l
total 24
-rw-rw-r-- 1 axel axel 1328 Oct 27 10:49 JGZip.class
-rw-rw-r-- 1 axel axel   26 Oct 27 10:49 test.gz
axel@loro:~/workspace/Test/bin/tmp$ gzip -d test.gz 
axel@loro:~/workspace/Test/bin/tmp$ ls -l
total 24
-rw-rw-r-- 1 axel axel 1328 Oct 27 10:49 JGZip.class
-rw-rw-r-- 1 axel axel    6 Oct 27 10:49 test
axel@loro:~/workspace/Test/bin/tmp$ cat test
hallo
于 2012-10-27T08:51:14.227 回答