我目前使用 GSON 使用输入流/阅读器来解析一个非常大的 JSONfile。在我的 android 设备上解析大约需要 35 秒,我从一些基准测试中了解到 Jackson 的性能要好得多。但我不知道如何使用杰克逊解析我的 JSON 文件。谁能帮我?
我的 JSON 看起来像这样:
[
{
"venue": { … }
},
{
"venue": {
"venue_seasons": [ … ],
"address": "the address",
"city": "the city",
"name": "the name",
"created_at": "2011-05-31T07:55:33Z",
"latitude": 00.000000,
"country": "the country",
"internal_link_en": null,
"internal_link_nl": null,
"updated_at": "2011-09-15T14:46:09Z",
"zipcode": "the zipcode",
"foursquare_link": "foursquare url",
"url": null,
"id": 3,
"tip": "some tip",
"uid": "4ab5e205f964a520317620e3",
"phone": "phonenr",
"recommended": null,
"website": "someurl",
"venue_photos": [ … ], //array containing objects with urls of images
"description": null,
"longitude": 00.000000,
"thumbnail_location": null,
"subcategories": [ … ],
"opening_en": null,
"opening_nl": null,
"hidden": false,
"twitter": "thetwitteraccount",
"themes": [ … ]
}
}, //more venues
]
我的 GSON 代码如下所示,它可以工作:
AssetManager assetManager = getAssets();
InputStream inputStream = null;
try {
inputStream = assetManager.open("filename.json");
} catch (IOException e) {
Log.e("tag", e.getMessage());
}
Reader reader = new InputStreamReader(inputStream);
Gson gson = new Gson();
List<JsonResponse> venueList = gson.fromJson(reader, new TypeToken<List<JsonResponse>>() {}.getType());
JsonResponse naam = venueList.get(12);
String denaam = naam.venue.getName;
Log.i("nr12",denaam);
Log.i("timetracker","stop" );
// just some logging to test if the parser works
for (JsonResponse venue : venueList) {
String tijdel = String.valueOf(venue.venue.id);
Log.i(venuetag,"name of venue"+ tijdel+ " is: " + venue.venue.getName);
}
...
class JsonResponse
{
Venues venue;
}
class Venues
{
public List<VenueSeasons> venue_seasons;
public List<VenuePhotos> venue_photos;
public List<SubCategories> subcategories;
public List<Themes> themes;
@SerializedName("address")
public String getAdress;
@SerializedName("city")
public String getCity;
@SerializedName("country")
public String getCountry;
@SerializedName("name")
public String getName;
@SerializedName("created_at")
public Date getCreatedAt;
@SerializedName("updated_at")
public Date getUpdatedAt;
@SerializedName("internal_link_nl")
public String getInternalLinkNl;
@SerializedName("internal_link_en")
public String getInternalLinkEN;
@SerializedName("latitude")
public Double getLatitude;
@SerializedName("longitude")
public Double getLongitude;
@SerializedName("foursquare_link")
public String getFoursquareLink;
@SerializedName("url")
public String getURL;
@SerializedName("phone")
public String getPhone;
@SerializedName("zipcode")
public String getZipCode;
public String tip;
public String tip_en;
public String uid;
public int id;
@SerializedName("website")
public String getWebsite;
@SerializedName("recommended")
public Boolean getRecommended;
@SerializedName("description")
public String getDescription;
@SerializedName("hidden")
public Boolean getHidden;
@SerializedName("opening_en")
public String getOpeningEN;
@SerializedName("opening_nl")
public String getOpeningNL;
@SerializedName("twitter")
public String getTwitter;
@SerializedName("thumbnail_location")
public String getThumbnailLocation;
}
public class VenuePhotos
{
@SerializedName("large")
public String getLargePhotoURL;
@SerializedName("medium")
public String getMediumPhotoURL;
@SerializedName("small")
public String getSmallPhotoURL;
@SerializedName("original")
public String getOriginalPhotoURL;
public String uid;
public int id;
public int venue_id;
public boolean selected;
@SerializedName("created_at")
public Date getCreatedAt;
@SerializedName("updated_at")
public Date getUpdatedAt;
}
现在这行得通。我对数据做了一些处理,解析后效果非常好,但我认为这很糟糕,我的应用程序启动需要很长时间。
我的杰克逊代码(失败的代码)是:
AssetManager assetManager = getAssets();
InputStream inputStream = null;
try {
inputStream = assetManager.open("originalDelftJson.json");
} catch (IOException e) {
Log.e("tag", e.getMessage());
}
Reader reader = new InputStreamReader(inputStream);
ObjectMapper objectMapper = new ObjectMapper();
JsonFactory jsonFactory = new JsonFactory();
JJsonResponse response = null;
try {
JsonParser jp = jsonFactory.createJsonParser(reader);
response = objectMapper.readValue(jp, JJsonResponse.class);
String test = String.valueOf(response.venue.size());
与类:
public class JJsonResponse
{
public List<JVenue> venue;
}
class Venues
{
public List<VenueSeasons> venue_seasons;
public List<VenuePhotos> venue_photos;
public List<SubCategories> subcategories;
public List<Themes> themes;
@SerializedName("address")
public String getAdress;
@SerializedName("city")
public String getCity;
@SerializedName("country")
public String getCountry;
@SerializedName("name")
public String getName;
@SerializedName("created_at")
public Date getCreatedAt;
@SerializedName("updated_at")
public Date getUpdatedAt;
@SerializedName("internal_link_nl")
public String getInternalLinkNl;
@SerializedName("internal_link_en")
public String getInternalLinkEN;
@SerializedName("latitude")
public Double getLatitude;
@SerializedName("longitude")
public Double getLongitude;
@SerializedName("foursquare_link")
public String getFoursquareLink;
@SerializedName("url")
public String getURL;
@SerializedName("phone")
public String getPhone;
@SerializedName("zipcode")
public String getZipCode;
public String tip;
public String tip_en;
public String uid;
public int id;
@SerializedName("website")
public String getWebsite;
@SerializedName("recommended")
public Boolean getRecommended;
@SerializedName("description")
public String getDescription;
@SerializedName("hidden")
public Boolean getHidden;
@SerializedName("opening_en")
public String getOpeningEN;
@SerializedName("opening_nl")
public String getOpeningNL;
@SerializedName("twitter")
public String getTwitter;
@SerializedName("thumbnail_location")
public String getThumbnailLocation;
}
public class JVenue
{
public String name;
public int id;
public String city;
public String address;
public String country;
public String internal_link_nl;
public String internal_link_en;
public String zipcode;
public String foursquare_link;
public String tip_en;
public String url;
public Date created_at;
public Date updated_at;
public float latitude;
public float longitude;
public String tip;
public String uid;
public String phone;
public String recommended;
public String website;
public String description;
public String thumbnail_location;
public boolean hidden;
public String twitter;
public String opening_en;
public String opening_nl;
}
我想我已经很接近了,但是我做错了,因为我得到了错误:org.codehaus.jackson.map.JsonMappingException: Can not deserialize instance of com.jacksonrecipes.testapp.model.JJsonResponse out of START_ARRAY token
我真的不明白杰克逊是如何工作的以及如何实现它。有谁知道如何在我的 Android 代码中更改我的 Jackson 实现,以便它可以工作并且我可以访问数据?
编辑:得到我的解决方案
在MH的回答的帮助下。我能找到它。我现在使用:
List<JJsonResponse> venueCounter = objectMapper.readValue(inputStream, new TypeReference<List<JJsonResponse>>() { });