解析后,我将从Rss获取HtmlString,我希望删除所有html标记,只需要在表单上显示纯文本,因为我已经引用了LWUIT HtmlComponent类,我使用了以下代码:
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标记
有人能帮我..。
发布于 2012-10-24 16:56:29
HTML代码中似乎有一个解析错误。它是否是一套完整的HTML,包含实际的HTML标签,主体等?
https://stackoverflow.com/questions/12909281
复制相似问题