try {
XmlNamespaceDictionary nameSpace = new XmlNamespaceDictionary().set("", "http://www.w3.org/2005/Atom").set("db", "http://www.douban.com/xmlns/").set("gd", "http://schemas.google.com/g/2005").set("openSearch", "http://a9.com/-/spec/opensearchrss/1.0/").set("opensearch", "http://a9.com/-/spec/opensearchrss/1.0/");
XmlObjectParser parser = new XmlObjectParser(nameSpace);
//JsonObjectParser parser = new JsonObjectParser(new JacksonFactory());
fis = new FileInputStream("/home/zwei/doubantestxml");
DoubanPeopleEntry result = parser.parseAndClose(fis, Charset.forName("utf-8"), DoubanPeopleEntry.class);
System.out.println("result : " + result);
} catch (FileNotFoundException ex) {
Logger.getLogger(PlayGround.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(PlayGround.class.getName()).log(Level.SEVERE, null, ex);