老实说,这不应该有这么多问题,但我必须遗漏一些明显的东西。
我可以很好地使用压缩文件,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);
}
}