所有
我遇到了在java和C ++之间压缩和解压缩的问题。
这是Java代码在服务器上运行。
public static byte[] CompressByDeflater(byte[] toCompress) throws IOException
{
ByteArrayOutputStream compressedStream = new ByteArrayOutputStream();
DeflaterOutputStream inflater = new DeflaterOutputStream(compressedStream);
inflater.write(toCompress, 0, toCompress.length);
inflater.close();
return compressedStream.toByteArray();
}
public static byte[] DecompressByInflater(byte[] toDecompress) throws IOException
{
ByteArrayOutputStream uncompressedStream = new ByteArrayOutputStream();
ByteArrayInputStream compressedStream = new ByteArrayInputStream(toDecompress);
InflaterInputStream inflater = new InflaterInputStream(compressedStream);
int c;
while ((c = inflater.read()) != -1)
{
uncompressedStream.write(c);
}
return uncompressedStream.toByteArray();
}
我从服务器收到一个二进制文件。
然后我必须使用C ++解压缩它。
我从哪里开始?
答案 0 :(得分:2)
您的压缩程序使用zlib(请参阅JDK documentation),因此您需要使用C ++ zlib库来解压缩其输出。
zlib documentation是开始的地方。