gpt4 book ai didi

javascript - Java解析对象

转载 作者:行者123 更新时间:2023-11-30 07:33:50 25 4
gpt4 key购买 nike

我有一个 javascript 对象,我通过 ajax 传回 java:

var jsonData = {   
"testJson" : "abc",
"userId" : "123"
};

当我打印 map 时,它看起来像:

key: jsondata value:[object Object]

如何正确解析对象?

最佳答案

您可以在java中使用GSON:

class MyObject() {
String testJson;
String userId;

public void setTestJson(String testJson) {
this.testJson=testJson;
}
public String getTestJson() {
return testJson;
}
... Same for userId
}

And then create a GSON object:

class SomeClass {
public void parseMyJson(String json) {
Gson gson=new Gson();
MyObject mo=gson.fromJson(json,MyObject.class);
}
}

其中 mo 现在包含 json 对象,仅使用 getter 和 setter

关于javascript - Java解析对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35687338/

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