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) 文字列を解凍しようとすると機能しません。