English 中文(简体)
我该用什么来拉链 而不是在Windows Mobile中的 GZipStream?
原标题:What should I use for zipping instead of GZipStream in Windows Mobile?

我在微软视觉工作室为 Windows Mobile 6 开发一个应用程序。 2005 年。 我不得不解开网络服务收到的文本。 但当我使用 GZipStream 时, 我发现错误如下:

错误 1 找不到类型或名称空间名称 GZipStream (您是否缺少使用指令或组装引用? )

我现在该怎么办?

最佳回答

我发现它。

brand new < a href=>" http://www.microsoft.com/downloads/details.aspx? FamilyID=1343d537-a62f-4a6e-9727-7791bf4cc2bd& DisplayLang=en" rel="no follow" > Contact Frame3.5 Beta1 现在包含压缩!

导言 导言 导言 导言 导言 导言 导言 导言

压缩框架缺少一个用于移动设备开发的关键命名空间 - System. IO. Compression。 这里就是使用流行的 ZIP 压缩压缩压缩压缩文本、 xml、 文件或任何流的能力。 您可以通过压缩应用程序中的数据来保存设备上的存储空间。 或者您可以在将信息传送到服务器前压缩信息, 以节省 GPRS 成本并加快传输时间。 只需以您在完整框架上的同样方式使用这个库 。

下载链接

< a href=> "http://www.aspecto- software.com/ccount/click.php?id=10" rel="nofollow" > Free down for CF1

< a href=> "http://www.aspecto- software.com/ccount/click.php?id=9" rel="nofollow" > Free down for CF2


"http://www.aspecto- software.com/rw/applications/ developmenter/compression/index.html" rel="nofollow" >我的参考

问题回答

GZipStream支持被添加到3.5版的《契约框架》中。 为开发CF3.5, 您需要2008年的视觉工作室( VS 2010 does < strong > non 支持《契约框架》的发展)。

如果您被锁定到2005年视觉工作室, 且您无法控制您所消费的网络服务, 您可以创建一个中间网络服务, 基本上将数据重新包装成由 CF 2. 0 支持的格式 。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签