-1

我正在制作一个 android 应用程序来从 rss 提要中获取数据http://pipes.yahoo.com/pipes/pipe.run?_id=be43f7366c8bae3b485cce84308d7abf&_render=rss&jumlah=50&location=indonesia 任何人都可以提出一个从 RSS 获取数据的想法与 XML?

4

1 回答 1

0

我个人更喜欢 XMLPullParser,尤其是对于更复杂的 XML 文件:http: //developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html

要在您的 java 代码中获取 XML 文件,请使用以下命令:

URL url = new URL("http://pipes.yahoo.com/pipes/pipe.run?_id=be43f7366c8bae3b485cce84308d7abf&_render=rss&jumlah=50&location=indonesia");
URLConnection httpConn = url.openConnection();
InputStream in = httpConn.getInputStream();
MyXMLPullParser parser = new MyXMLPullParser();
parser.parse(in);
于 2013-05-11T07:03:07.587 回答