我正在尝试解析从请求到Facebook的提要。但是,我的解析器正在跳过很多信息。下面是代码的一部分,它是要解析的内容以及if语句中的打印内容的示例。例如,永远找不到“消息”。有想法吗?
List<FacebookItem> list = new ArrayList<FacebookItem>();
try {
if (jFactory == null)
jFactory = new JsonFactory();
jParser = jFactory.createJsonParser(json);
FacebookItem o = null;
while (jParser.nextToken() != null) {
if ("type".equals(jParser.getCurrentName())) {
jParser.nextToken();
o = new FacebookItem();
o.setType(jParser.getText());
System.out.println("Found type: " + jParser.getText());
}
if ("from".equals(jParser.getCurrentName()))
while (!"name".equals(jParser.getCurrentName())) {
jParser.nextToken();
}
jParser.nextToken();
o.getUser().setUserName(jParser.getText());
System.out.println("Found name: " + jParser.getText());
}
if ("message".equals(jParser.getCurrentName())) {
jParser.nextToken();
o.setText(jParser.getText());
System.out.println("Found message: " + jParser.getText());
}
if ("created_time".equals(jParser.getCurrentName())) {
jParser.nextToken();
o.setTimestamp(jParser.getText());
System.out.println("Found created_time: " + jParser.getText());
list.add(o);
}
}
jParser.close();
} catch (JsonGenerationException e) {
e.printStackTrace();
} catch (JsonMappingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
{“数据”:[{“类型”:“照片”,“链接”:“ http://www.facebook.com/photo.php?fbid=10151331660204305&set=a.299455459304.180838.197394889304&type=1&relevant_count=1”,“来自“:{”名称“:”巴塞罗那足球俱乐部“,”类别“:”职业体育
团队”,“ id”:“ 197394889304”},“消息”:“ Puyol面临八周裁员
http://bit.ly/QXhOFE\r\n\r\nPuyol,vuit setmanes de baixa
http://bit.ly/T1enma\r\n\r\nPuyol,ocho semanas de baja
http://bit.ly/T0eaj8“,”图片“:” http://photos-g.ak.fbcdn.net/hphotos-ak-snc6/246623_10151331660204305_75156416_s.jpg“,” created_time“:” 2012-10- 03T17:40:06 + 0000“,” id“:” 197394889304_10151331937599305“},{” type“:” checkin“,” link“:” http://www.facebook.com/pages/Hubben-21/249474758405147“ ,“ from”:{“ name”:“ Andreas
Rol \ u00e9n“,” id“:” 575703056“},” message“:”
重做
chipleader“,”图片“:” http://profile.ak.fbcdn.net/static-ak/rsrc.php/v2/y5/r/j258ei8TIHu.png“,”名称“:” Hubben
2.1“,” created_time“:” 2012-10-03T17:24:19 + 0000“,” id“:” 575703056_10151181582028057“},{” type“:” photo“,” link“:” http:// www。 facebook.com/photo.php?fbid=10151445544542786&set=at.10151445533587786.588547.694032785.688088336&type=1&relevant_count=1“,”来自“:{”名称“:” Jens Wilhelmsson“,” id“:” 688088336“},”图片“ :“ http://photos-h.ak.fbcdn.net/hphotos-ak-prn1/72091_10151445544542786_676020840_s.jpg”,“ created_time”:“ 2012-10-03T17:21:40 + 0000”,“ id”:“ 688088336_10151111148358337“},{” type“:” link“,” from“:{” name“:” Eric
Lindqvist“,” id“:” 648057222“},” created_time“:” 2012-10-03T17:20:52 + 0000“,” id“:” 648057222_10151249963167223“}
Found type: photo
Found name: FC Barcelona
Found name: Andreas Rolén
Found name: Hubben 2.1
Found created_time: 2012-10-03T17:24:19+0000
Found type: photo
Found name: Jens Wilhelmsson
Found name: Eric Lindqvist
最佳答案
我真的很喜欢杰克逊,它既快速又非常有能力。我从未使用过流式API(您在此处使用的流式API),但是它看起来确实很困难。除非您非常担心内存使用情况,否则建议您不要使用流式API。由于您在移动设备上,因此显然需要更多地关注资源,因此这就是您的要求。
如果您决定放弃流式API,最简单的方法就是创建一个映射到JSON的java对象模型,然后使用ObjectMapper将字符串读入该对象模型。您可以使用注释来自定义转换,以重命名映射或其他内容的字段。像下面这样的东西应该起作用(取决于FacebookItem的实际定义。)
import org.codehaus.jackson.map.DeserializationConfig.Feature;
....
ObjectMapper mapper = new ObjectMapper();
// tell it to not fail on properties that you don't have mapped, that way you
// only have to map the fields you are interested in and can ignore the rest
mapper.getDeserializationConfig().set(Feature.FAIL_ON_UNKNOWN_PROPERTIES, false);
ItemContainer itemContainer = mapper.readValue(facebookDataJsonString, ItemContainer.class);
// where elsewhere you have defined something like:
class ItemContainer {
List<FacebookItem> data;
// getters and setters for data.
}
以下是eugen在注释中指定的选项。如果您的JSON包含一个列表(即没有“数据”包装器,而是看起来像
[{...},{...}]
,则此方法将起作用): ObjectMapper mapper = new ObjectMapper();
// tell it to not fail on properties that you don't have mapped, that way you
// only have to map the fields you are interested in and can ignore the rest
mapper.getDeserializationConfig().set(Feature.FAIL_ON_UNKNOWN_PROPERTIES, false);
List<FacebookItem> items = mapper.readValue(jsonString, new TypeReference<List<Stuff>>(){});
最后,第三个选择是,如果没有对象映射,则将其读入Map。然后,至少您不必处理JSONObject和JSONArray的东西。
ObjectMapper mapper = new ObjectMapper();
Map<String, Object> container = mapper.readValue(facebookDataJsonString, Map.class);
List<Map<String,Object>> = container.get("data");
for (Map<String,Object> map : container ) {
System.out.println( "type is " + map.get("type"));
System.out.println( "from is " + ((Map<String,Object>)map.get("from")).get("name"));
System.out.println( "message is " + map.get("message"));
}