รับไฟล์. json ต่อไปนี้:
[
{
"name" : "New York",
"number" : "732921",
"center" : [
"latitude" : 38.895111,
"longitude" : -77.036667
]
},
{
"name" : "San Francisco",
"number" : "298732",
"center" : [
"latitude" : 37.783333,
"longitude" : -122.416667
]
}
]
ฉันเตรียมสองคลาสเพื่อแสดงข้อมูลที่มีอยู่:
public class Location {
public String name;
public int number;
public GeoPoint center;
}
...
public class GeoPoint {
public double latitude;
public double longitude;
}
ในการแยกวิเคราะห์เนื้อหาจากไฟล์. json ฉันใช้Jackson 2.2.xและเตรียมวิธีการต่อไปนี้:
public static List<Location> getLocations(InputStream inputStream) {
ObjectMapper objectMapper = new ObjectMapper();
try {
TypeFactory typeFactory = objectMapper.getTypeFactory();
CollectionType collectionType = typeFactory.constructCollectionType(
List.class, Location.class);
return objectMapper.readValue(inputStream, collectionType);
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
ตราบเท่าที่ฉันละทิ้งcenter
คุณสมบัติทั้งหมดจะสามารถแยกวิเคราะห์เนื้อหาได้ อย่างไรก็ตามเมื่อฉันพยายามแยกวิเคราะห์พิกัดทางภูมิศาสตร์ฉันพบข้อความแสดงข้อผิดพลาดต่อไปนี้:
com.fasterxml.jackson.databind.JsonMappingException: ไม่สามารถ deserialize อินสแตนซ์ของ
com.example.GeoPoint จากโทเค็น START_ARRAY ที่ [ที่มา: android.content.res.AssetManager$AssetInputStream@416a5850; บรรทัด: 5 คอลัมน์: 25]
(ผ่านห่วงโซ่อ้างอิง: com.example.Location ["center"])
center
คืออาร์เรย์ของออบเจ็กต์ที่ไม่ถูกต้อง พยายามแทนที่[
และ]
ด้วย{
และ}
ในสตริง JSON รอบ ๆlongitude
และlatitude
มันจะเป็นวัตถุ