在表单中显示 html 页面(连接到流时出错)
Posted
技术标签:
【中文标题】在表单中显示 html 页面(连接到流时出错)【英文标题】:Displaying an html page in form (error connecting to stream) 【发布时间】:2013-11-11 13:00:24 【问题描述】:我在项目的 src 文件夹中放置了一个 .html 页面,以便在运行时显示该页面。
但我在运行时收到一条错误消息:- 连接到流时出错。
import javax.microedition.midlet.*;
public class HtmlMidlet 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("jar://src/ahlam.html");
form.addComponent(htmlC);
form.setScrollable(true);
form.show( );
public void pauseApp()
public void destroyApp(boolean unconditional)
【问题讨论】:
【参考方案1】:我认为您打开文件的方式不是正确的方式。这个 html 页面在您的文件夹中吗?你的页面在哪里?根目录是您项目中的/src,为什么要使用jar:...仅尝试/ahlam.html
查看此页面以获取更多信息和示例HTML Component
【讨论】:
以上是关于在表单中显示 html 页面(连接到流时出错)的主要内容,如果未能解决你的问题,请参考以下文章