将文档插入 jscrollpane
我想将文档(文本和图像)显示到 JScrollPane 中。做到这一点最简单的方法是什么?
I would like to display a document (text and images) into a JScrollPane. What is the easiest way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要一个 JTextPane。 JScrollPane 适用于普通文本,但如果您想要使用样式和字体以及文本编辑器中看到的内容处理文档,则需要 JTextPane 或 JEditorPane。
您可以搜索 JTextPane 和 JEditorPane 的示例用法。
You need a JTextPane. JScrollPane is for normal texts but if you want document handling with styles and fonts and those stuff you see in text editors, you need JTextPane or JEditorPane.
You can do a search for the sample usage for JTextPane and JEditorPane.