.ser文件在Android中的最大大小

时间:2013-04-01 07:41:53

标签: android file size

我使用 Map Dictionary = new Hashtable(); 在Android中实现了字典。我已将字典值写入.ser文件,如下所示。

 FileOutputStream fos = new FileOutputStream(dictionaryfile);
 ObjectOutputStream oos = new ObjectOutputStream(fos);
 oos.writeObject(map);
 oos.close();

dictionaryfile是.ser文件。我想知道.ser文件的最大大小。

1 个答案:

答案 0 :(得分:2)

如果要保存在SD卡上,则文件的最大大小是卡上允许的最大大小。如果它是FAT32格式,那么它是4 GB。