0

我有一个应该加载和显示 html 页面的 LWUIT 应用程序。

所以我在 src 目录中放了一个 html 文件(与我的 java 类相同的目录)

返回

要显示 html 文件,我使用 HtmlComponent 小部件。

但是应用程序运行后没有显示Html页面!

返回

设置html文件的路径有错误吗?

 import com.sun.lwuit.layouts.*;


     import javax.microedition.midlet.*;


     public class HelloLWUITMidlet3 extends MIDlet

     {

       public void startApp()
    {
    com.sun.lwuit.Display.init(this);

    final com.sun.lwuit.Form form = new com.sun.lwuit.Form("");

    final com.sun.lwuit.html.HTMLComponent htmlC = new com.sun.lwuit.html.HTMLComponent( );


     htmlC.setRTL(true);

    htmlC.setPage("file://ahlam.html");

    form.addComponent(htmlC);


    BorderLayout bl = new BorderLayout();

    form.setScrollable(true);


    form.show( );

   }

  public void pauseApp() 
  {

  }

 public void destroyApp(boolean unconditional) {


 }


 }
4

1 回答 1

0

要在 jar 中显示 html 文件,您可以使用

htmlC.setPage("jar:///ahlam.html");

我的文件位于源目录的根目录。

于 2013-06-23T13:39:15.653 回答