以 HTML 形式查看 JTextPane 中的样式文本

发布于 2024-10-03 14:48:13 字数 171 浏览 4 评论 0原文

我基本上用 JTextPane 和一些样式选项(粗体、斜体、下划线和中心/右/左对齐选项)制作了一个简单的文本编辑器,我想知道是否有任何简单的方法来查看 HTML 版本?

我最终想要做的是有一个“导出为 HTML”类型选项,其中只有纯文本,但它是用 HTML 标签格式化的,而不是样式化的。

谢谢

I've basically made a simple text editor with a JTextPane and some styling options (bold, italicize, underline, and center/right/left justify options), and I'm wondering if there is any easy way to view the HTML version?

What I'm eventually wanting to do is have an "export as HTML" type option that just has the plain text, but it's formatted with HTML tags instead of being styled.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅气称霸 2024-10-10 14:48:13

如果您需要 HTML,则需要确保内容类型为 text/html,以便使用正确的编辑器工具包。

然后使用 textPane.getText() 获取 HTML。

If you want HTML, then you need to make sure the content type is text/html so the proper editor kit is used.

Then you use textPane.getText() to get the HTML.

深府石板幽径 2024-10-10 14:48:13

您是否查看过 javax.swing.text 或 javax.swing.text.html 或 javax.swing.text.html.parser 中的任何类?

Have you looked at any of the classes in javax.swing.text or javax.swing.text.html or javax.swing.text.html.parser?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文