gpt4 book ai didi

java - 在不使用 JEditorPane 的情况下查看 Applet 内的 HTML

转载 作者:行者123 更新时间:2023-11-30 01:40:31 25 4
gpt4 key购买 nike

我有一个小的(500kb)swing 小程序,它使用 JEditorPane 显示非常简单/有限的一组小 HTML 页面,但是这似乎不能 100% 流畅地工作,一些客户会在没有显示的情况下显示空白页面任何java异常。该页面在我的机器上运行正常。我需要一种更可靠的方式来向所有用户显示 HTML 页面。

如果有一个小的+免费类可以代替 JEditorPane 使用,有什么想法吗?或者是否有一个简单的修复方法可以使其更可靠(非空白)

private JEditorPane m_editorPane = new JTextPane();


m_editorPane.setEditable( false);

m_editorPane.setBackground(new Color(239 ,255, 215));
m_editorPane.setBounds(30,42,520,478 );
m_editorPane.setDoubleBuffered(true);
m_editorPane.setBorder(null);

m_editorPane.registerEditorKitForContentType("text/html", "com.xxxxx.SynchronousHTMLEditorKit");


m_editorPane.setPage(ResourceLoader.getURLforDataFile(param.trim()));

最佳答案

虽然我没用过,Lobo是一个开源的 Java Web 浏览器,支持 HTML 4、Javascript 和 CSS 2。

JEditorPane相比仅支持 HTML 3.2,看来 Lobo 可能是加载现代网页的更好选择。

关于java - 在不使用 JEditorPane 的情况下查看 Applet 内的 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/413053/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com