Can anyone suggest me a file archiving library for bada?
I've 开发者_运维技巧looked at minizip (which uses zlib) and bzip2, but they both use Linux or Windows headers for file access, which the bada SDK does not provide.
If anyone stumbles upon this, I managed to use LiteZip with only minimal modifications.
Try to use namespace Osp::Base::Utility
sub-namespace you will find these classes (according to bada 2.0):
Osp::Base::Utility::Deflator
Osp::Base::Utility::FileUnzipper
Osp::Base::Utility::FileZipper
Osp::Base::Utility::Inflator
Osp::Base::Utility::ZipEntry
精彩评论