Jsoup和“形象”

时间:2014-09-15 15:03:15

标签: xml jsoup

我尝试使用Java Jsoup解析XML文件。

XML:

<images>
  <image>http://site.ru/xml_examples/photos/photo1.jpg</image>
  <image>http://site.ru/xml_examples/photos/photo2.jpg</image>
  <image>http://site.ru/xml_examples/photos/photo3.jpg</image>
</images>

代码:

org.jsoup.Connection.Response res = Jsoup.connect(feedUrl)
                .header("User-Agent", RPL.USER_AGENT)
                .method(org.jsoup.Connection.Method.GET)
                .timeout(60000)
                .execute();
doc = res.parse();
SysLog2.debug("doc = " + doc);

输出:

<images>
  <img />http://site.ru/xml_examples/photos/photo1.jpg
  <img />http://site.ru/xml_examples/photos/photo2.jpg
  <img />http://site.ru/xml_examples/photos/photo3.jpg
</images>

我的问题:我的&#34; 图片&#34;会发生什么?标签?我如何禁用这种转变?

1 个答案:

答案 0 :(得分:0)

解决方案(使用&#39; xmlParser&#39;):

org.jsoup.Connection.Response res = Jsoup.connect(feedUrl)
                .header("User-Agent", RPL.USER_AGENT)
                .method(org.jsoup.Connection.Method.GET)
                .timeout(60000)
                .execute();
doc = Jsoup.parse(res.toString(), "", Parser.xmlParser());