0

我已经搜索了很多从字节到字符串的转换,但我的查询有点不同,请提前阅读。

目前我有一个 gzip 文件,我可以使用http://www.mkyong.com/java/how-to-decompress-file-from-gzip-file/中的代码对其进行解压缩。此代码帮助我将解压缩的输出存储在文件中,但如何将其存储在变量中?我目前正在使用此代码:

public String unGunzipFile(String compressedFile, String decompressedFile) {

        byte[] buffer = new byte[1024];

        try {

            FileInputStream fileIn = new FileInputStream(compressedFile);

            GZIPInputStream gZIPInputStream = new GZIPInputStream(fileIn);

            FileOutputStream fileOutputStream = new FileOutputStream(decompressedFile);
            StringBuffer str = new StringBuffer();
            int bytes_read;
            while ((bytes_read = gZIPInputStream.read(buffer)) > 0) {

                String s = new String(buffer);
                str.append(s);
                fileOutputStream.write(buffer, 0, bytes_read);
            }

            gZIPInputStream.close();
            fileOutputStream.close();

            System.out.println("The file was decompressed successfully!");
            System.out.println(str);
            String final_string = str.toString();
            return final_string;

        } catch (IOException ex) {
            ex.printStackTrace();
            return null;
        }
    } 

由于我bytes_read在长度不是 1024 时将字节转换为字符串,所以我最终在我的 StringBuffer 中得到了一些奇怪的数据,但是在文件中没有这样的数据,因为fileOutputStream.write(buffer, 0, bytes_read);它限制它写入更新的部分。我该如何解决?

提前致谢。

4

2 回答 2

1

使用String(byte[] bytes, int offset, int length)可让您指定要转换的长度的构造函数。IE

String s = new String(buffer, 0, bytes_read)
于 2017-03-29T16:51:21.077 回答
0

我建议不要使用 String s = new String(buffer),而是使用

公共字符串(字节[]字节,整数偏移量,整数长度)

这可能会帮助你。

于 2017-03-29T17:05:34.803 回答