我可以在 Windows Mobile 6.5 应用程序中使用 gzip
我需要使用 gzip 就像 gzip Linux 中的命令 到 windows mobile 应用程序中,将数据压缩到文件中然后在php/apache/linux中用gunzip解压,可以吗? C# 移动紧凑框架是否支持运行命令,我在移动设备上搜索了 cmd 但没有找到?
i need to use gzip like the gzip Command in linux into a windows mobile application to compress data into a file and decompress it by gunzip in php/apache/linux,can i??
and does C# mobile compact framework support running a command,and i've searched for a cmd on the mobile device and i didn't found ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows Mobile 将不包含
gzip
可执行文件。但是,您可能可以使用zlib
,特别是 zlib.NET要处理压缩数据 - 您只需要手动解码 gzip 标头。Windows Mobile will not contain a
gzip
executable. However, you likely can usezlib
, specifically zlib.NET to work on the compressed data - you will simply need to manually decode the gzip header.