以 HTML 形式查看 JTextPane 中的样式文本
我基本上用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您需要 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.您是否查看过 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?