从Properties得到数据到gson转换为json

时间:2021-06-08 18:35:44

从上一篇得到properties里的数据

 Map<String,String> map = new HashMap<String,String>();
Enumeration<Object> keys = properties.keys();
while(keys.hasMoreElements()){
String key = (String)keys.nextElement();
String value = (String)properties.get(key);
map.put(key,value);
}

现在得到了properties里的数据,然后怎样转化为json?我用的是用Gson转化,看以下内容吧

 Gson gson = new Gson();
String jsonStr = gson.toJson(map);
//以下是传输到调用页面
PrintWriter pw = response.getWriter();
pw.print(jsonStr);
pw.flush();