我有一个应该加载和显示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) {
}
}
答案 0 :(得分:0)
要在jar中显示html文件,您可以使用
htmlC.setPage("jar:///ahlam.html");
我的文件位于源目录的根目录。