私は新しいJava Pythonのバックグラウンドから来たプログラマーです。ネストされたキーを持つJSONとして収集/返される天気データがあり、どのようにプルするか理解できませんこの質問は以前に聞かれたことはあると思いますが、私はかなりグーグルで検索したことがあり、答えが見つからないようです。今はjson-simpleを使用していますが、 Jackson/Gsonが最も使用されているライブラリであるように見えるので、これらのライブラリの1つを使用した例を見てみたいと思います。 、これまでに書いたコードが続きます。
{
"response": {
"features": {
"history": 1
}
},
"history": {
"date": {
"pretty": "April 13, 2010",
"year": "2010",
"mon": "04",
"mday": "13",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
...
}
}
主な機能
public class Tester {
public static void main(String args[]) throws MalformedURLException, IOException, ParseException {
WundergroundAPI wu = new WundergroundAPI("*******60fedd095");
JSONObject json = wu.historical("San_Francisco", "CA", "20100413");
System.out.println(json.toString());
System.out.println();
//This only returns 1 level. Further .get() calls throw an exception
System.out.println(json.get("history"));
}
}
関数 'historical'は、JSONObjectを返す別の関数を呼び出します
public static JSONObject readJsonFromUrl(URL url) throws MalformedURLException, IOException, ParseException {
InputStream inputStream = url.openStream();
try {
JSONParser parser = new JSONParser();
BufferedReader buffReader = new BufferedReader(new InputStreamReader(inputStream, Charset.forName("UTF-8")));
String jsonText = readAll(buffReader);
JSONObject json = (JSONObject) parser.parse(jsonText);
return json;
} finally {
inputStream.close();
}
}
ジャクソンのツリーモデル(JsonNode
)には、欠損値に対してnull
を返す「リテラル」アクセサメソッド(「get」)と「安全な」アクセサ(「path」)の両方があります。これにより、「欠落」ノードを横断できます。したがって、たとえば:
JsonNode root = mapper.readTree(inputSource);
int h = root.path("response").path("history").getValueAsInt();
指定されたパスで値を返すか、パスが見つからない場合は0(デフォルト値)
しかし、より便利なのは、JSONポインター式を使用するだけです:
int h = root.at("/response/history").getValueAsInt();
他の方法もあり、実際に構造をプレーンオールドJavaオブジェクト(POJO)として実際にモデル化する方が便利です。コンテンツは次のように適合します。
public class Wrapper {
public Response response;
}
public class Response {
public Map<String,Integer> features; // or maybe Map<String,Object>
public List<HistoryItem> history;
}
public class HistoryItem {
public MyDate date; // or just Map<String,String>
// ... and so forth
}
その場合、Javaオブジェクトと同様に、結果のオブジェクトをトラバースします。
Jsonpath を使用します
整数h = JsonPath.parse(json).read( "$。response.repository.history"、Integer.class);
ジャクソンのObjectMapperをご覧ください。 JSONをモデル化するクラスを作成し、ObjectMapperのreadValueメソッドを使用してJSON文字列をモデルクラスのインスタンスに「デシリアライズ」できます。およびその逆。
Jpath APIを試してください。 JSONデータと同等のxpathです。 JSONデータをトラバースし、要求された値を返すjpathを提供することにより、データを読み取ることができます。
このJavaクラスは実装であり、APIを呼び出す方法のサンプルコードもあります。
https://github.com/satyapaul/jpath/blob/master/JSONDataReader.Java
Readme-
https://github.com/satyapaul/jpath/blob/master/README.md
例:
JSONデータ:
{
"data": [{
"id": "13652355666_10154605514815667",
"uid": "442637379090660",
"userName": "fanffair",
"userFullName": "fanffair",
"userAction": "recommends",
"pageid": "usatoday",
"fanPageName": "USA TODAY",
"description": "A missing Indonesian man was found inside a massive python on the island of Sulawesi, according to local authorities and news reports. ",
"catid": "NewsAndMedia",
"type": "link",
"name": "Indonesian man swallowed whole by python",
"picture": "https:\/\/external.xx.fbcdn.net\/safe_image.php?d=AQBQf3loH5-XP6hH&w=130&h=130&url=https%3A%2F%2Fwww.gannett-cdn.com%2F-mm-%2F1bb682d12cfc4d1c1423ac6202f4a4e2205298e7%2Fc%3D0-5-1821-1034%26r%3Dx633%26c%3D1200x630%2Flocal%2F-%2Fmedia%2F2017%2F03%2F29%2FUSATODAY%2FUSATODAY%2F636263764866290525-Screen-Shot-2017-03-29-at-9.27.47-AM.jpg&cfs=1&_nc_hash=AQDssV84Gt83dH2A",
"full_picture": "https:\/\/external.xx.fbcdn.net\/safe_image.php?d=AQBQf3loH5-XP6hH&w=130&h=130&url=https%3A%2F%2Fwww.gannett-cdn.com%2F-mm-%2F1bb682d12cfc4d1c1423ac6202f4a4e2205298e7%2Fc%3D0-5-1821-1034%26r%3Dx633%26c%3D1200x630%2Flocal%2F-%2Fmedia%2F2017%2F03%2F29%2FUSATODAY%2FUSATODAY%2F636263764866290525-Screen-Shot-2017-03-29-at-9.27.47-AM.jpg&cfs=1&_nc_hash=AQDssV84Gt83dH2A",
"message": "Akbar Salubiro was reported missing after he failed to return from harvesting Palm oil.",
"link": "http:\/\/www.usatoday.com\/story\/news\/nation-now\/2017\/03\/29\/missing-indonesian-man-swallowed-whole-reticulated-python\/99771300\/",
"source": "",
"likes": {
"summary": {
"total_count": "500"
}
},
"comments": {
"summary": {
"total_count": "61"
}
},
"shares": {
"count": "4"
}
}]
}
コードスニペット:
String jPath = "/data[Array][1]/likes[Object]/summary[Object]/total_count[String]";
String value = JSONDataReader.getStringValue(jPath, jsonData);