Android Honeycomb 有文件大小限制吗?
我想知道 Android 应用程序可以使用的数据文件是否有大小限制,或者取决于 SD 卡(或内部存储器)文件系统的大小限制?
干杯
奥利维尔
I wanted to know if there was a size limit to the data files an android app can use or a size limit depending on the SD card (or internal memory) filesystem ?
Cheers
Olivier
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文件大小限制由文件系统决定。例如,FAT32 无法处理大于 4GB 的文件。不幸的是,您的 microSD 卡很可能被格式化为 FAT32。
对于 Android 2.2 及更早版本,内部文件系统是 YAFFS。作者 Charles Manning 在此邮件中声明最大文件大小为 512 MB。已宣布 Android 2.3 将使用 ext4。
也许也可以将您的 SD 卡格式化为这种格式,但我还没有尝试过。请记住,您将无法在 Windows 或 OS X 下阅读内容。
另请参阅答案在这个主题中。
The file size limit is determined by the filesystem. FAT32, for instance, cannot handle files larger than 4GB. Unfortunately, it is fairly likely that your microSD card is formatted in FAT32.
For Android 2.2 and older, the internal file system is YAFFS. The author, Charles Manning, states in this mailing that the maximum file size is 512 MB. It has been announced that Android 2.3 will use ext4.
It might be possible to format your SD card to this format as well, but I haven't tried it. Bear in mind that you won't be able to read the contents under Windows or OS X.
See also the answers in this topic.