我正在开发一个 RESTful Web 服务,它将返回一个 RSS 提要列表,有人添加到我之前实现的提要列表中。
现在,如果我返回TEXT_PLAIN回复,这在浏览器中显示得很好,尽管当我尝试返回APPLICATION_XML回复时,我收到以下错误:
XML 解析错误:文档元素后出现垃圾 位置:http://localhost:8080/Assignment1/api/feedlist 第 1 行,第 135 列:SMH 热门标题http://feeds.smh.com.au/rssheadlines/top.xmlUTS 库新闻http://www.lib.uts.edu.au/news/feed/all
这是代码 - 我无法弄清楚为什么它没有返回格式良好的 XML 页面(我还尝试使用新行和空格(缩进)格式化 XML 回复 - 当然这不起作用):
package au.com.rest;
import java.io.FileNotFoundException;
import java.io.IOException;
import javax.ws.rs.*;
import javax.ws.rs.core.*;
import au.edu.uts.it.wsd.*;
@Path("/feedlist")
public class RESTFeedService {
String feedFile = "/tmp/feeds.txt";
String textReply = "";
String xmlReply = "<?xml version=\"1.0\"?><feeds>";
FeedList feedList = new FeedListImpl();
@GET
@Produces(MediaType.APPLICATION_XML)
public String showXmlFeeds() throws FileNotFoundException, IOException
{
feedList.load(feedFile);
for (Feed f:feedList.list()){
xmlReply += "<feed><name>" + f.getName() + "</name>";
xmlReply += "<uri>" + f.getURI() + "</uri></feed></feeds>";
}
return xmlReply;
}
}