Save hash table to string
This task use java to save hash table to string.
Save hash table to string using ByteArrayOutputStream
1 | public String writeHash(Properties properties) { |
2 | String tag = ""; |
3 | try { |
4 | ByteArrayOutputStream baos = new ByteArrayOutputStream(); |
5 | properties.store(baos, ""); |
6 | tag = baos.toString(); |
7 | baos.close(); |
8 | } catch (Exception e) { |
9 | logger.error("", e); |
10 | } |
11 | return tag; |
12 | } |
public String writeHash(Properties properties) { String tag = ""; try { ByteArrayOutputStream baos = new ByteArrayOutputStream(); properties.store(baos, ""); tag = baos.toString(); baos.close(); } catch (Exception e) { logger.error("", e); } return tag; }
No comments:
Post a Comment