我正在开发一个 windows phone 7 应用程序,其中我的应用程序正在消耗我的服务的响应。
我的服务给出了 xml(string) 的响应,因为 xml 的大小非常大,我使用以下方法压缩了 xml:-
public static string Compress(string text)
{
byte[] buffer = Encoding.UTF8.GetBytes(text);
MemoryStream ms = new MemoryStream();
using (GZipStream zip = new GZipStream(ms, CompressionMode.Compress, true))
{
zip.Write(buffer, 0, buffer.Length);
}
ms.Position = 0;
MemoryStream outStream = new MemoryStream();
byte[] compressed = new byte[ms.Length];
ms.Read(compressed, 0, compressed.Length);
byte[] gzBuffer = new byte[compressed.Length + 4];
System.Buffer.BlockCopy(compressed, 0, gzBuffer, 4, compressed.Length);
System.Buffer.BlockCopy(BitConverter.GetBytes(buffer.Length), 0, gzBuffer, 0, 4);
return Convert.ToBase64String(gzBuffer);
}
我已经使用 GZipStream 类压缩了数据并使用 System.IO.Compression 添加了命名空间,但是
我的问题是:-
我无法在该客户端(Windows Phone 7 应用程序)中解压缩它,我试图在 Windows Phone 7 应用程序项目中添加该 dll
它说:- system.Io.Compression dll 无法添加,因为它不是使用 windows phone 7 运行时构建的,windows phone 项目仅适用于 windows phone 程序集。
我做错了什么吗,有没有更好的方法。
你能告诉我最佳解决方案吗?
提前致谢