我在解析后从Rss文件中获取HtmlString。我想删除所有的html标签,并且只需要在我的Form上显示纯文本,为此我已经引用了LWUIT HtmlComponent Class并使用了下面的代码:
private void displayCompleteNewsScreen(News detailNews) {
html.removeAll();
form2.removeAll();
form2.repaint();
form2.addCommand(m_backCommand);
form2.addCommandListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
form1.show();
}
});
String content= detailNews.getDescription();
html.setPreferredSize(new Dimension(300,300));
html.setHTML(content, null, null, false);
form2.addComponent(html);
form2.show();
}
我能够在我的LWUITform上成功显示文本,但是我每次在表单上显示文本时都会抛出以下异常
Exception1:
Uncaught exception: java.util.NoSuchElementException
at java.util.Vector.lastElement(Vector.java:456)
- com.sun.lwuit.html.HTMLComponent.popContainer(HTMLComponent.java:3667)
- com.sun.lwuit.html.HTMLComponent.processTag(HTMLComponent.java:2825)
- com.sun.lwuit.html.HTMLComponent.rebuildPage(HTMLComponent.java:1653)
- com.sun.lwuit.html.HTMLComponent.documentReady(HTMLComponent.java:1113)
- com.sun.lwuit.html.HTMLComponent$1.run(HTMLComponent.java:770)
Exception2:
Uncaught exception:
java.lang.OutOfMemoryError
(stack trace incomplete)
java.lang.OutOfMemoryError
(stack trace incomplete)
Exception3:
Uncaught exception: java.lang.IllegalArgumentException: Component is already contained in Container: Container[x=0 y=0 width=0 height=0, layout = BoxLayout, scrollableX = false, scrollableY = false, components = [Container]]
- com.sun.lwuit.Container.insertComponentAt(Container.java:370)
- com.sun.lwuit.Container.addComponent(Container.java:334)
- com.sun.lwuit.html.HTMLComponent.newLine(HTMLComponent.java:1878)
- com.sun.lwuit.html.HTMLComponent.processTag(HTMLComponent.java:2826)
- com.sun.lwuit.html.HTMLComponent.rebuildPage(HTMLComponent.java:1653)
- com.sun.lwuit.html.HTMLComponent.documentReady(HTMLComponent.java:1113)
注意:我的HtmlString不会包含任何图片和src标签
任何人都可以帮助我......
答案 0 :(得分:0)
HTML代码中似乎存在解析错误。它是包含实际HTML标记,正文等的完整HTML集吗?