2

我目前正在尝试使用 netbeans 6.9.1 开发应用程序,但是当我尝试运行该程序时出现以下错误

Uncaught exception: java.lang.IllegalArgumentException
    at javax.microedition.io.Connector.openPrim(), bci=31
    at javax.microedition.io.Connector.open(), bci=3
    at javax.microedition.io.Connector.open(), bci=3
    at javax.microedition.io.Connector.open(), bci=2
    at RSSParser$1.run(RSSParser.java:32)

此错误来自此代码

public void parse(final String url) {
Thread t = new Thread() {
  public void run() {
    // set up the network connection
    HttpConnection hc = null;

    try {
      hc = (HttpConnection)Connector.open(url);
      parse(hc.openInputStream());
    }
    catch (IOException ioe) {
      mRSSListener.exception(ioe);
    }
    finally {
      try { if (hc != null) hc.close(); }
      catch (IOException ignored) {}
    }
  }
};
t.start();
}

正在从此处的另一个类调用此方法

public void startApp() {
if (mDisplay == null)
  mDisplay = Display.getDisplay(this);

if (mInitialized == false) {
  // Put up the waiting screen.
  Screen waitScreen = new Form("Connecting...");
  mDisplay.setCurrent(waitScreen);
  // Create the title list.
  mTitleList = new List("Headlines", List.IMPLICIT);
  mExitCommand = new Command("Exit", Command.EXIT, 0);
  mDetailsCommand = new Command("Details", Command.SCREEN, 0);
  mTitleList.addCommand(mExitCommand);
  mTitleList.addCommand(mDetailsCommand);
  mTitleList.setCommandListener(this);
  // Start parsing.
  String url = getAppProperty("RSSMIDlet.URL");
  RSSParser parser = new RSSParser();
  parser.setRSSListener(this);
  parser.parse(url);
  mInitialized = true;
}
else
  mDisplay.setCurrent(mTitleList);
}

当我调试它时,它说“String url”为空,我该如何解决这个问题?

我还在字符串 url 中放置了一个 url,如下所示:

String url = getAppProperty("RSSMIDlet.http://wwww.anything.com");
String url = getAppProperty("http://wwww.anything.com");

但这无关紧要,因为第一种方式有一个默认的 url 可以访问。

有人知道我在这里做错了什么吗?

4

1 回答 1

0

这有帮助吗?

String url = "http://wwww.anything.com";

如果您参考文章Parsing XML in J2ME,您应该知道它是从 2002 年开始的,并且从那时起 kxml 一直在进步。

如果您不幸无法运行 midlet,您可能会对本文档感兴趣。恕我直言,您需要通过在清单文件中将属性名称RSSMIDlet.URL设置为http://www.anything.com来配置 midlet。

于 2012-01-17T13:21:46.057 回答