gpt4 book ai didi

java - 如何使用 toString() 方法和 JsonNode(String) 构造函数在 String 和 JsonNode 之间进行转换

转载 作者:行者123 更新时间:2023-12-02 00:35:03 24 4
gpt4 key购买 nike

我在写这篇文章时需要一些指导,以便我理解这个概念:

基本上,我需要在 String 和 JsonNode 之间进行转换,并且我已经看到了一个说明要做什么的答案,但作为新手开发人员,我不确定这意味着什么。如果我能看到它的实现,那么将会有所帮助。

下面是我的响应 json 节点:

    public void hitEndpoint(String endpoint) {
DataStore dataStore = DataStoreFactory.getScenarioDataStore();
HttpResponse<JsonNode> httpResponse;
String url = "xxx/xxx";
try {
httpResponse = Unirest.post(url)
.asJson();
dataStore.put("httpResponse", httpResponse);
...

}

下面我尝试转换该值,以便可以从 json 中检索值:

public void RetrieveExampleNode(String endpoint){
DataStore dataStore = DataStoreFactory.getScenarioDataStore();
JsonNode httpResponse = (JsonNode) dataStore.get("httpResponse");
String getExampleNode = httpResponse.getBody().getObject().getJSONArray("test").getJSONObject(0).get("example").toString();
//issue above is that it doesn't recognise getBody. When I remove getBody() and run the code, it still gives me a class cast exception error in the line where states JsonNode httpResponse = ...
}

上面代码中的 JSON 尝试解析并当前由 httpResponse 检索:

{"test": [{"example": "2019-09-18T04:32:12Z"}, {"type": "application/json","other": {"name": Test Tester}}]}

我正在使用 uniRest 1.4.9

最佳答案

下面的示例是将 JSON 字符串转换为 JSONObject

import org.json.JSONArray;
import org.json.JSONObject;

String jsonString = "{\"test\": [{\"example\": \"2019-09-18T04:32:12Z\"}, {\"type\": \"application/json\",\"other\": {\"name\": Test Tester}}]}";
JSONObject jsonObject = new JSONObject(jsonString);

已编辑答案

//For Get using Unirest
HttpResponse<JsonNode> httpResponse = Unirest.get("https://jsonplaceholder.typicode.com/posts/1").asJson();
String responseString = httpResponse.getBody().toString();
JSONObject object = new JSONObject(responseString); //Converting to JSONObject since it supports more functionalities
System.out.println(object.keySet());


//For Post using Unirest
httpResponse = Unirest.post("https://jsonplaceholder.typicode.com/posts").body("This is sample Body").asJson();
object = new JSONObject(responseString);
System.out.println(object.keySet());

关于java - 如何使用 toString() 方法和 JsonNode(String) 构造函数在 String 和 JsonNode 之间进行转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57985951/

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