多平台单文件存储
我需要一种方法来为 .NET 和 java 以一个/两个的形式存储多个图像(有些项目对我们来说也是一个索引)。文件格式需要易于解压缩(我计划在 Android 上这样做)。
而且,对于每个文件,我需要能够存储以下元数据:文件索引、名称、md5 校验和。
另外,框架的占用空间不应该太大。
最后,如果您对问题有任何简单的解决方案,我不需要框架,但可以在一些指导下自己编写代码。
谢谢。
I need a way to store several images in one/two (some projects seems to us an index too) for both .NET and java. The file-format needs to be easy to decompress (I'm planing to do so on android).
And also, for each file I need to be able to store the following metadata: file-index, name, md5-checksum.
Also, the footprint of the framework should not be to big.
And last, if you got any simple solutions to the problem, I don't need a framework, but could with some guidance probably code it myself.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Zip 似乎是显而易见的选择。您可以存储包含 zip 尚未提供的任何元数据的附加文件。该格式定义明确,并且有大量可用的工具。
Zip seems like the obvious choice. You can store an additional file containing any metadata not already provided by zip. The format is well defined and there are a wealth of tools available.