Map Dictionary=new Hashtable();を使用して Android に辞書を実装しました。. 以下のように、辞書の値を .ser ファイルに書き込みました。
FileOutputStream fos = new FileOutputStream(dictionaryfile);
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(map);
oos.close();
Dictionaryfile は .ser ファイルです。.ser ファイルの最大サイズを知りたいです。