Load hash table from string
This task use java to load hash table from string.
Load hash table from string using ByteArrayInputStream
1 | public void readHash(Properties properties, String src) { |
2 | try { |
3 | ByteArrayInputStream bais = new ByteArrayInputStream(src.getBytes()); |
4 | properties.load(bais); |
5 | bais.close(); |
6 | } catch (Exception e) { |
7 | logger.error("", e); |
8 | } |
9 | } |
public void readHash(Properties properties, String src) { try { ByteArrayInputStream bais = new ByteArrayInputStream(src.getBytes()); properties.load(bais); bais.close(); } catch (Exception e) { logger.error("", e); } }
No comments:
Post a Comment