我正在尝试使用以下代码查找未压缩的bz2文件的大小。但是,运行代码后,我得到的大小为0字节。不知道怎么了。有人可以指出。

try{
                FileInputStream fin = new FileInputStream("/users/praveen/data1/00.json.bz2");
                BufferedInputStream in = new BufferedInputStream(fin);


                BZip2CompressorInputStream bzIn = new BZip2CompressorInputStream(in);
                  long size = 0;
                  while (bzIn.available() > 0)
                  {
                    byte[] buf = new byte[1024];
                    int read = bzIn.read(buf);
                    if (read > 0) size += read;
                  }

                  System.out.println("File Size: " + size + "bytes");
                  bzIn.close();
                //bzIn.close();
                }
                catch (Exception e) {
                throw new Error(e.getMessage());
                }

最佳答案

BZip2CompressorInputStream可能没有完全实现available()方法。它可能仅返回0。相反,您应该尝试使用InputStream#read(byte[])并检查-1返回。

09-25 21:21