Thursday, 22 December 2011

Save hash table to file

Save hash table to file
This task use java to save hash table to file.
Save hash table to file using FileOutputStream
1public void saveHash(Properties properties, String filename) {
2 try {
3 FileOutputStream fos = new FileOutputStream(filename);
4 properties.store(fos, "");
5 fos.close();
6 } catch (Exception e) {
7 logger.error("", e);
8 }
9}
public void saveHash(Properties properties, String filename) {
    try {
        FileOutputStream fos = new FileOutputStream(filename); 
        properties.store(fos, "");
        fos.close();
    } catch (Exception e) {
        logger.error("", e);
    }
}

  Protected by Copyscape Online Copyright Protection

No comments:

Post a Comment