BrowserComponent无法在Codename One桌面版本中显示

时间:2015-12-16 20:12:43

标签: java codenameone

我的Codename One应用程序使用以下代码来构建嵌入式浏览器组件:

Form notesForm = new Form(subjectName);
this.currentSubject = subjectName;
notesForm.setLayout(new BorderLayout());
WebBrowser wb = new WebBrowser();
wb.setURL("jar:///alevelhtmlnotes/" + subjectName.toLowerCase()          +   ".html");notesForm.addComponent(BorderLayout.CENTER, wb);
 notesForm.show();
 startTime = System.currentTimeMillis();
 NotesProgressChecker time = new NotesProgressChecker();
 time.recordTimesAccessedValues(subjectName);
 notesForm.setBackCommand(com);

这在模拟器和设备构建中运行良好,但是当我构建本机Windows桌面应用程序时,浏览器组件会消失。

1 个答案:

答案 0 :(得分:0)

这是打包过程中的一个错误,由于某种原因打包了损坏的虚拟机:https://github.com/codenameone/CodenameOne/issues/1606

它分配给我,所以我想我应该责怪它不起作用。我会尽快让它工作。