この Web サイトから取得した以下の JSON の「コンポーネント」部分を解析しようとしています: http://geocoder.opencagedata.com/api.html :
{
"licenses" : [
{
"name" : "CC-BY-SA",
"url" : "http://creativecommons.org/licenses/by-sa/3.0/"
},
{
"name" : "ODbL",
"url" : "http://opendatacommons.org/licenses/odbl/summary/"
}
],
"rate" : {
"limit" : 2500,
"remaining" : 2494,
"reset" : 1434844800
},
"results" : [
{
"annotations" : {
"DMS" : {
"lat" : "22\u00b0 40' 46.34184'' S",
"lng" : "14\u00b0 31' 39.36216'' E"
},
"MGRS" : "33KVQ5147391877",
"Maidenhead" : "JG77gh36hv",
"Mercator" : {
"x" : 1617205.101,
"y" : -2576841.391
},
"OSM" : {
"url" : "http://www.openstreetmap.org/?mlat=-22.67954&mlon=14.52760#map=17/-22.67954/14.52760"
},
"callingcode" : 264,
"geohash" : "k7fqfx6djekju86um1br",
"sun" : {
"rise" : {
"astronomical" : 1434774000,
"civil" : 1434777300,
"nautical" : 1434775620
},
"set" : {
"astronomical" : 1434822420,
"civil" : 1434819120,
"nautical" : 1434820800
}
},
"timezone" : {
"name" : "Africa/Windhoek",
"now_in_dst" : 0,
"offset_sec" : 3600,
"offset_string" : 100,
"short_name" : "WAT"
},
"what3words" : {
"words" : "matriarchs.nano.rotates"
}
},
"components" : {
"city" : "Swakopmund",
"clothes" : "Jet",
"country" : "Namibia",
"country_code" : "na",
"road" : "Nathaniel Maxuilili St (Breite St)",
"state" : "Erongo Region",
"suburb" : "Central"
},
"confidence" : 0,
"formatted" : "Jet, Nathaniel Maxuilili St (Breite St), Swakopmund, Namibia",
"geometry" : {
"lat" : -22.6795394,
"lng" : 14.5276006
}
}
],
"status" : {
"code" : 200,
"message" : "OK"
},
"thanks" : "For using an OpenCage Data API",
"timestamp" : {
"created_http" : "Sat, 20 Jun 2015 21:54:45 GMT",
"created_unix" : 1434837285
},
"total_results" : 1
}
その場所が実際に地図上に存在する場合、私はそれを成功させることができます. ただし、場所が存在しない場合、緯度 1 と経度 1 を指定すると、この json の「コンポーネント」部分は使用できなくなります。
これを行うことで、「コンポーネント」がjsonで返されない場合、サーバーが爆発するのを防ごうとしています:
JsonNode componentsNode = node.path("components");
if (componentsNode.isMissingNode()) {
return "Location Services unavailable";
}
しかし、実行しているのは、 isMissingNode チェックに進む前に以下の行を指し示し、この行に NullPointerException があると言っているだけです。
JsonNode componentsNode = node.path("components");
json のコンポーネント部分が存在しないため、これは理にかなっています。
ジャクソンが nullpointerexception を与えずにこのチェックを実行するにはどうすればよいですか?
編集:
これはジャクソンの私のコードです:
JsonNode rootNode = m.readTree(responses.getBody());
JsonNode resultNode = rootNode.get("results");
if (resultNode.isArray()) {
JsonNode node = resultNode.get(0);
JsonNode componentsNode = node.path("components");
if (componentsNode.isMissingNode()) {
return "Location Services unavailable";
}
if (!componentsNode.path("city").isMissingNode() && !componentsNode.path("country").isMissingNode()) {
return componentsNode.get("city").textValue() + ", " + componentsNode.get("country").textValue();
}
}
また、opencage によると、緯度と経度が両方とも 1 に等しい場合、次の json があります。
{
"documentation" : "http://geocoder.opencagedata.com/api.html",
"licenses" : [
{
"name" : "CC-BY-SA",
"url" : "http://creativecommons.org/licenses/by-sa/3.0/"
},
{
"name" : "ODbL",
"url" : "http://opendatacommons.org/licenses/odbl/summary/"
}
],
"rate" : {
"limit" : 2500,
"remaining" : 2457,
"reset" : 1451174400
},
"results" : [
{
"annotations" : {
"DMS" : {
"lat" : "0\u00b0 0' 42.92604'' N",
"lng" : "0\u00b0 50' 9.45366'' E"
},
"MGRS" : "31MBV5913898681",
"Maidenhead" : "JI09kx07hd",
"Mercator" : {
"x" : 93058.569,
"y" : -1318.477
},
"OSM" : {
"url" : "http://www.openstreetmap.org/?mlat=-0.01192&mlon=0.83596#map=17/-0.01192/0.83596"
},
"geohash" : "kpbxgjbdx30rpj39gksz",
"sun" : {
"rise" : {
"apparent" : 1451109240,
"astronomical" : 1451104680,
"civil" : 1451107860,
"nautical" : 1451106300
},
"set" : {
"apparent" : 1451152860,
"astronomical" : 1451157360,
"civil" : 1451154240,
"nautical" : 1451155800
}
},
"what3words" : {
"words" : "statutes.stout.falsifying"
}
},
"components" : {
"place_of_worship" : "mesjid waskita"
},
"confidence" : 10,
"formatted" : "mesjid waskita",
"geometry" : {
"lat" : -0.0119239,
"lng" : 0.83595935
}
}
],
"status" : {
"code" : 200,
"message" : "OK"
},
"stay_informed" : {
"blog" : "http://blog.opencagedata.com",
"twitter" : "https://twitter.com/opencagedata"
},
"thanks" : "For using an OpenCage Data API",
"timestamp" : {
"created_http" : "Sat, 26 Dec 2015 16:32:06 GMT",
"created_unix" : 1451147526
},
"total_results" : 1
}