作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 C# 应用程序中使用的 sybase 图像类型列中有一些数据。 Java 使用 java.util.zip 包对数据进行了压缩。我想测试我是否可以在 C# 中解压缩数据。所以我写了一个测试应用程序,把它从数据库中拉出来:
byte[] bytes = (byte[])reader.GetValue(0);
这给了我一个长度为 2479 的压缩 byte[]。
然后我将其传递给一个看似标准的C#解压方法:
public static byte[] Decompress(byte[] gzBuffer)
{
MemoryStream ms = new MemoryStream();
int msgLength = BitConverter.ToInt32(gzBuffer, 0);
ms.Write(gzBuffer, 4, gzBuffer.Length - 4);
byte[] buffer = new byte[msgLength];
ms.Position = 0;
GZipStream zip = new GZipStream(ms, CompressionMode.Decompress);
zip.Read(buffer, 0, buffer.Length);
return buffer;
}
msgLength 的值为 1503501432,这似乎超出了范围。原始文档应在 5K -50k 范围内。无论如何,当我使用该值创建“缓冲区”时,毫不奇怪,我得到了 OutOfMemoryException。怎么了?吉姆
Java压缩方法如下:
public byte[] compress(byte[] bytes) throws Exception {
byte[] results = new byte[bytes.length];
Deflater deflator = new Deflater();
deflater.setInput(bytes);
deflater.finish();
int len = deflater.deflate(results);
byte[] out = new byte[len];
for(int i=0; i<len; i++) {
out[i] = results[i];
}
return(out);
}
最佳答案
由于我看不到您的 Java 代码,我只能猜测您正在将数据压缩为 zip 文件流。因此,如果您尝试在 c# 中使用 gzip 解压缩来解压缩该流,它显然会失败。您可以将 Java 代码更改为 gzip 压缩(页面底部的示例 here),或者使用适当的库(例如 SharpZipLib)解压缩 c# 中的 zip 文件流。
更新
现在好了,我看到你在 java 中使用 deflate 进行压缩。所以,显然你必须在 c# 中使用相同的算法:System.IO.Compression.DeflateStream
public static byte[] Decompress(byte[] buffer)
{
using (MemoryStream ms = new MemoryStream(buffer))
using (Stream zipStream = new DeflateStream(ms,
CompressionMode.Decompress, true))
{
int initialBufferLength = buffer.Length * 2;
byte[] buffer = new byte[initialBufferLength];
bool finishedExactly = false;
int read = 0;
int chunk;
while (!finishedExactly &&
(chunk = zipStream.Read(buffer, read, buffer.Length - read)) > 0)
{
read += chunk;
if (read == buffer.Length)
{
int nextByte = zipStream.ReadByte();
// End of Stream?
if (nextByte == -1)
{
finishedExactly = true;
}
else
{
byte[] newBuffer = new byte[buffer.Length * 2];
Array.Copy(buffer, newBuffer, buffer.Length);
newBuffer[read] = (byte)nextByte;
buffer = newBuffer;
read++;
}
}
}
if (!finishedExactly)
{
byte[] final = new byte[read];
Array.Copy(buffer, final, read);
buffer = final;
}
}
return buffer;
}
关于c# - C#解压的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2721230/
我是一名优秀的程序员,十分优秀!