2

PHP gzcompress() 関数によって圧縮された文字列を解凍するにはどうすればよいですか?

完全な例はありますか?

どうも

私は今このようにそれを試しました:

public static String unzipString(String zippedText) throws Exception
{
    ByteArrayInputStream bais = new ByteArrayInputStream(zippedText.getBytes("UTF-8"));
    GZIPInputStream gzis = new GZIPInputStream(bais);
    InputStreamReader reader = new InputStreamReader(gzis);
    BufferedReader in = new BufferedReader(reader);

    String unzipped = "";
    while ((unzipped = in.readLine()) != null) 
        unzipped+=unzipped;

    return unzipped;
}

しかし、PHP gzcompress (-ed) 文字列を解凍しようとすると機能しません。

4

3 に答える 3

9

PHPのgzcompressはGZIPではなくZlibを使用します

public static String unzipString(String zippedText) {
    String unzipped = null;
    try {
        byte[] zbytes = zippedText.getBytes("ISO-8859-1");
        // Add extra byte to array when Inflater is set to true
        byte[] input = new byte[zbytes.length + 1];
        System.arraycopy(zbytes, 0, input, 0, zbytes.length);
        input[zbytes.length] = 0;
        ByteArrayInputStream bin = new ByteArrayInputStream(input);
        InflaterInputStream in = new InflaterInputStream(bin);
        ByteArrayOutputStream bout = new ByteArrayOutputStream(512);
        int b;
        while ((b = in.read()) != -1) {
            bout.write(b); }
        bout.close();
        unzipped = bout.toString();
    }
    catch (IOException io) { printIoError(io); }
    return unzipped;
 }
private static void printIoError(IOException io)
{
    System.out.println("IO Exception: " + io.getMessage());
}
于 2011-08-05T23:35:01.310 に答える
2

GZIPInputStream を試してください。この例この SO の質問を参照してください。

于 2010-12-01T18:12:23.577 に答える
0

見る

http://developer.android.com/reference/java/util/zip/InflaterInputStream.html

DEFLATE アルゴリズムは gzip であるためです。

于 2010-12-01T18:11:25.017 に答える