在j2me中的lwuit中的HttpRequestHandler的Jar文件

时间:2012-07-23 04:58:33

标签: java-me lwuit html-components

我需要在j2me模拟器中打开一个网页。因为我有流量,我可以通过使用HTMLComponent来做到这一点。但我不能使用这个HttpRequestHandler类在Lwuit的j2me中创建处理程序可以有人说我在j2me中缺少什么吗?如果有任何JAR文件使用它然后给我建议使用它。然后我也尝试了DocumentRequestHandler而不是HttpRequestHandler但是它向我展示了模拟器"连接流中的错误"

我的代码是:

         DocumentRequestHandler handler=new DocumentRequestHandler() {

        public InputStream resourceRequested(DocumentInfo di) {
          return null;
            //           throw new UnsupportedOperationException("Not supported yet.");
        }
    };
 HTMLComponent htmlc=new HTMLComponent(handler);
 htmlc.setPage("http://facebook.com");
 addComponent(htmlc);
 show();

在这段代码中我需要在DocumentRequestHandler中返回什么?

1 个答案:

答案 0 :(得分:3)

您正在寻找的课程可在LWUITBrowser示例应用程序中找到,可以在MIDP /应用程序下从LWUIT SVN中查看。