我正在为 2 个 xml 文件在 j2me(java) 中开发 Rss Feed Reader App,但我的 for 循环是
有问题,xml文件给出null,当我运行我的应用程序时,控制不会在我的循环getXMLFeed(url1)中使用这个方法;,而不是它正在完成 for 循环。任何人都可以帮忙吗?我的循环是否正确?一旦检查我的源代码?我遇到了 for 循环的问题
检查我的源代码:
urls = new String[2];//Array Declaration
urls[0] = "http://www.teluguone.com/news/tonefeeds/topnews/topnews-20.rss";
urls[1] = "http://www.teluguone.com/news/tonefeeds/topstory/topstory-25.rss";
for (int i = 0; i < urls.length; i++) //iterration
{
myThread = new ParseThread(this);
myThread.getXMLFeed(url1);
myDysplay.setCurrent(mform);
}
public void getXMLFeed(final String url) {
Thread t = new Thread() {
public void run() {
myConnection = (HttpConnection) Connector.open(url);//HttpConnection
InputStream stream = myConnection.openInputStream();
ParseXMLFeed(stream);
}