web-dev-qa-db-fra.com

Compresser une chaîne en gzip en 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();
}

Lorsque je sauvegarde cette chaîne dans un fichier et que je lance gunzip -d file.txt sous unix, il se plaint:

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

Essayez d'utiliser 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();
     }
  }
 }

A propos de votre exemple de code, essayez:

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
}
12
Maxim Shoustin

Essayez ça:

//...

String string = "string";

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

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

//...
3
oleg.lukyrych

Sauvegarder des octets avec FileOutputStream

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

out.toString () semble suspect, le résultat sera illisible, si vous ne vous en souciez pas, alors pourquoi ne pas renvoyer byte [], si vous vous en souciez, le résultat serait meilleur sous forme de chaîne hex ou base64.

0
Evgeniy Dorofeev