//
////////////////////////////////////////////////////////////////////////////
public Map<String, String> load(InputStream is, String charset) throws Exception {
LocalizedPropertiesLoader loader = new LocalizedPropertiesLoader(is, "UTF-8");
Map<String, String> map = new HashMap<String, String>();
loader.load(map);
return map;
}
public void save(OutputStream out, String charset, Map<String, String> map, String comments)
throws Exception {