如何将JsonObject转换为String以便在servlet中的会话中存储?

时间:2017-08-06 07:49:23

标签: android json database servlets login

如何将JsonObject转换为String以便在servlet中的会话中存储?

JSONObject jSONObject = new JSONObject();

jSONObject.put("user", rs.getString("user").toString());
jSONObject.put("pass", rs.getString("pass").toString());

1 个答案:

答案 0 :(得分:1)

您只需使用

即可
jSONObject.string();

但如果这种方式无法满足您的需求,您可以使用以下方式 要将json对象转换为json字符串,您可以在构建gradle中使用此库

compile 'com.google.code.gson:gson:2.7'

并在您的代码中:

String string = new Gson().toJson(jSONObject );