public static TaggedDictionary loadFrom(File f) throws Exception { FileInputStream fi = null; BufferedInputStream bi = null; ObjectInputStream oin = null; TaggedDictionary result = null; try { fi = new FileInputStream(f); bi = new BufferedInputStream(fi, 1000000); oin = new ObjectInputStream(bi); result = new TaggedDictionary(); result.readFrom(oin); } finally { try { oin.close(); } catch (Exception exx) { } try { bi.close(); } catch (Exception exx) { } try { fi.close(); } catch (Exception exx) { } } return result; }
public static TaggedDictionary readTaggedDictionary(ObjectInputStream in) throws Exception { TaggedDictionary res = new TaggedDictionary(); res.readFrom(in); return res; }