2012-07-23 80 views
2

我需要在j2me模擬器中打開一個網頁。正如我有流量,我可以通過使用HTMLComponent來做到這一點。但是我不能用這個HttpRequestHandler類在Lwuit的j2me中創建處理程序,有人可以說我在j2me中缺少什麼嗎?如果有任何JAR文件使用它,那麼給我建議使用它。然後,我還試圖DocumentRequestHandler在同一個,而不是HttpRequestHandler但它告訴我模擬器,它「錯誤連接流」j2me中lwuit中HttpRequestHandler的Jar文件

我的代碼是:

  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返回?

回答

3

您正在尋找的課程可在LWUITBrowser示例應用程序中獲得,並且可以在MIDP /應用程序下從LWUIT SVN中檢出。