Zlib deflate 文件作为附件添加到电子邮件中时无法打开
我正在使用 Zlib 通过使用 NSData 类别来压缩文本文件,如 http://www.cocoadev 中所述.com/index.pl?NSDataCategory 。
压缩后,我将文件附加到电子邮件中。当我打开电子邮件并下载压缩文件时,我无法解压缩该文件。我收到文件已损坏的错误。
我使用 @"application/x-deflate" 作为附件 mime 类型。当我向 MFMailComposeViewController 添加附件以进行电子邮件发送时,我将 FileName.zip 作为附件的文件名。
我将附件类型指定为@“application/x-deflate”是否正确?从电子邮件下载后如何才能解压文件?
I m using Zlib to compress a text file by using NSData category as discussed in http://www.cocoadev.com/index.pl?NSDataCategory .
After compressing I m attaching the file to an email. When I open the email and download the compressed file I am not able to unzip the file. I m getting an error that the file is corrupted.
I am using @"application/x-deflate" as attachment mime type. And I m giving FileName.zip as file name of attachment when I m adding attachment to MFMailComposeViewController for emailing.
Am I right in giving the attachment type as @"application/x-deflate"? What to do in order to be able to unzip the file after downloading from email?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用“application/zip”作为 MIME 类型。
Try 'application/zip' as the MIME type.