如何将JsonObject转换为String以便在servlet中的会话中存储?
JSONObject jSONObject = new JSONObject();
jSONObject.put("user", rs.getString("user").toString());
jSONObject.put("pass", rs.getString("pass").toString());
答案 0 :(得分:1)
您只需使用
即可jSONObject.string();
但如果这种方式无法满足您的需求,您可以使用以下方式 要将json对象转换为json字符串,您可以在构建gradle中使用此库
compile 'com.google.code.gson:gson:2.7'
并在您的代码中:
String string = new Gson().toJson(jSONObject );