web-dev-qa-db-ja.com

文字列をgzipに圧縮してJava

public static String compressString(String str) throws IOException{
    if (str == null || str.length() == 0) {
        return str;
    }
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    GZIPOutputStream gzip = new GZIPOutputStream(out);
    gzip.write(str.getBytes());
    gzip.close();
    Gdx.files.local("gziptest.gzip").writeString(out.toString(), false);
    return out.toString();
}

その文字列をファイルに保存し、UNIXでgunzip -d file.txtを実行すると、次のように文句を言います。

gzip: gzip.gz: not in gzip format
11
kelorek

BufferedWriterを使用してみてください

public static String compressString(String str) throws IOException{
if (str == null || str.length() == 0) {
    return str;
}

BufferedWriter writer = null;

try{
    File file =  new File("your.gzip")
    GZIPOutputStream Zip = new GZIPOutputStream(new FileOutputStream(file));

    writer = new BufferedWriter(new OutputStreamWriter(Zip, "UTF-8"));

    writer.append(str);
}
finally{           
    if(writer != null){
     writer.close();
     }
  }
 }

コード例について試してみてください:

public static String compressString(String str) throws IOException{
if (str == null || str.length() == 0) {
    return str;
}
ByteArrayOutputStream out = new ByteArrayOutputStream(str.length());
GZIPOutputStream gzip = new GZIPOutputStream(out);
gzip.write(str.getBytes());
gzip.close();

byte[] compressedBytes = out.toByteArray(); 

Gdx.files.local("gziptest.gzip").writeBytes(compressedBytes, false);
out.close();

return out.toString(); // I would return compressedBytes instead String
}
13
Maxim Shoustin

それを試してください:

//...

String string = "string";

FileOutputStream fos = new FileOutputStream("filename.Zip");

GZIPOutputStream gzos = new GZIPOutputStream(fos);
gzos.write(string.getBytes());
gzos.finish();

//...
3
oleg.lukyrych

FileOutputStreamを使用して外部からバイトを保存する

FileOutputStream fos = new FileOutputStream("gziptest.gz");
fos.write(out.toByteArray());
fos.close();

out.toString()は疑わしいようです。気にしない場合は、結果を読み取れません。気にしない場合は、byte []を返さないのはなぜですか。気にすると、16進またはbase64文字列として見栄えが良くなります。

0