gpt4 book ai didi

java - 我在这个解析中做错了什么?

转载 作者:行者123 更新时间:2023-11-29 03:33:42 24 4
gpt4 key购买 nike

我目前正在解析 reddit.com/.json使用 Google Gson 时遇到了一些麻烦。在做了一些研究之后,我找到了一种无需创建大量类即可使用 Gson 解析 json 的方法。我正在使用这个 method .到目前为止,这是我的代码:

import java.io.*;
import java.net.*;
import com.google.gson.*;
public class Subreddits {

public static void main(String[] args) {
URL u = null;
try {
u = new URL("http://www.reddit.com/.json");
} catch (MalformedURLException e) {
e.printStackTrace();
}
URLConnection yc = null;
try {
yc = u.openConnection();
} catch (IOException e) {
e.printStackTrace();
}
BufferedReader in = null;
try {
in = new BufferedReader(new InputStreamReader(yc.getInputStream()));
} catch (IOException e) {
e.printStackTrace();
}
String json = null;
StringBuilder sb = new StringBuilder();
try {
while ((json = in.readLine()) != null){
sb.append(json);
}
} catch (IOException e) {
e.printStackTrace();
}
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
json = sb.toString();//String of json
System.out.println(json);
//I want to get [data][children][data][subreddit]
JsonParser parser = new JsonParser();
JsonObject rootObj = parser.parse(json).getAsJsonObject();
JsonObject locObj = rootObj.getAsJsonObject("data").getAsJsonObject("children").getAsJsonObject("data");

String subreddit = locObj.get("subreddit").getAsString();

System.out.println(subreddit);
}

}

最佳答案

您试图将元素“children”作为JsonObject获取,但它是一个JsonArray,因为它被包围>[ ]...

尝试这样的事情:

JsonParser parser = new JsonParser();
JsonObject rootObj = parser.parse(json).getAsJsonObject();

//Here is the change
JsonObject locObj = rootObj
.getAsJsonObject("data")
.getAsJsonArray("children")
.get(0)
.getAsJsonObject()
.getAsJsonObject("data");

String subreddit = locObj.get("subreddit").getAsString();

注意:我假设您只想获取 "children" 数组的第一个元素的数据,因为看起来这就是您想要查看代码的内容,并且主要看this other question of yours .

关于java - 我在这个解析中做错了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16609220/

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