0
我正在嘗試從以.aspx結尾的url解析RSS源。我無法修改.aspx文件。 問題是文件的第一行崩潰了我的整個應用程序。Android從ASPX解析RSS源URL
<rss xmlns:a10="http://www.w3.org/2005/Atom" version="2.0">
<channel>
...
</channel>
</rss>
當我嘗試我自己的RSS提要沒有RSS標記它完美的工作。 我解析的信息,下面這個小碼:
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost("http://www.url.com/rssfeed.aspx");
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
line = EntityUtils.toString(httpEntity);
有沒有一種方法,我可以讓Java忽略第一個和.aspx文件的最後一行? 謝謝!
非常感謝!這工作完美! –