gpt4 book ai didi

java - 输入 Hashmap 到 JSONObject

转载 作者:行者123 更新时间:2023-11-29 02:14:06 25 4
gpt4 key购买 nike

我有一个 HashMap,它存储来自数据库的数据。如何将HashMap输入到JSONObject中?

HashMap<AppDataRequest, AppData> appdatas = new HashMap<AppDataRequest, AppData>();

public AppDataService(){
Connection conn = null;
Statement stat = null;
try{
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection(DB_URL, USER, PASS);
stat = conn.createStatement();
String sql = "SELECT * FROM testdata";
ResultSet resu = stat.executeQuery(sql);
while(resu.next()){
int id = resu.getInt("app_id");
String email = resu.getString("email");
String password = resu.getString("password");
String token = resu.getString("token");
appdatas.put(new AppDataRequest(id, email, password), new AppData(" ", "success", token));
}
resu.close();
stat.close();
conn.close();
}

如何将 HashMap 应用程序数据放入 JSONObject?我尝试将 HashMap 放入 JSONObject 中,因为我希望实现如下输出。

{
"AppData": {
"status": "success",
"message": ""
"token": "****"
}
}

提前感谢任何回复。

最佳答案

使用GSON下载以下 Google 的 API Gson

String json=new Gson().toJson(appdatas);

关于java - 输入 Hashmap<Object, Object> 到 JSONObject,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43386382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com