我正在尝试从 url 解析 atom 文档' http://self-learning-java-tutorial.blogspot.in/atom.xml '。在解析文档时,我收到错误“无效的 UTF-8 起始字节 0x8b(在 char #2,字节 #-1)”。
Abdera abdera = new Abdera();
Parser parser = abdera.getParser();
URL url = new URL("http://self-learning-java-tutorial.blogspot.in/atom.xml");
Document<Feed> doc = parser.parse(url.openStream(), url.toString());
Feed feed = doc.getRoot();
System.out.println(feed.getTitle());
for (Entry entry : feed.getEntries()) {
System.out.println("\t" + entry.getTitle());
}
System.out.println(feed.getAuthor());
任何人都可以帮助我,这个错误是什么以及如何解决这个错误?