0

我正在尝试使用 apache abdera 在休息调用后解析从 websphere 门户收到的响应原子提要。但是在解析时收到以下错误。有人可以让我知道是什么问题吗?

org.apache.abdera.parser.stax.FOMUnsupportedTextTypeException:不支持的文本类型:text/html

    Abdera abdera = new Abdera();
    AbderaClient abderaClient = new AbderaClient(abdera);
    Factory factory = abdera.getFactory();        
    Cookie[] cookies=request.getCookies();
    org.apache.commons.httpclient.Cookie ltpaCookieHttpCommons = new org.apache.commons.httpclient.Cookie();
    RequestOptions options = new RequestOptions(true);
    List<String> cookieStrings = new ArrayList<String>();
    options.setHeader("Cookie", (String[])cookieStrings.toArray(new String[cookieStrings.size()]));

    ClientResponse resp = abderaClient.get("http://localhost:10039/wps/contenthandler/!ut/p/digest!W9TQFjuU7ADCwtSkxDsxHg/searchfeed/search?queryLang=en&locale=en&resultLang=en&query=test&scope=com.ibm.lotus.search.ALL_SOURCES&start=0&results=10&output=application/xml", options);
    System.out.println(resp.getType());
    if (resp.getType() == ResponseType.SUCCESS) {
        System.out.println("!!!!!!Response success!!!!!!");
        Document<Feed> docFeed = resp.getDocument();
        // JSON Output
        Writer writer = abdera.getWriterFactory().getWriter("json");
        try { 
            Feed feed=docFeed.getRoot();

            abdera.getWriterFactory().getWriter("json").writeTo(feed, System.out);
        } catch(Exception e) {
            e.printStackTrace();
        }
    } else {

    }    
4

1 回答 1

0

问题是您的解析提供的原子有一个类型标签,text/html其中没有在原子规范中,因此 abdera 抛出上述错误。

根据规范:

如果存在,该值必须是“text”、“html”或“xhtml”之一

您确定该提要是原子提要,而不是支持上述 MIME 类型的附件的 RSS 提要吗?

于 2015-02-17T22:19:58.207 回答