在 JTextArea 中设置字体
我有一个 JTextArea,其中包含以下文本“Text1 Text2 Text3”。 有没有办法让我把它们全部变成不同的字体?例如“Text1”是粗体,“Text2”是斜体,“Text3”是普通字体?
我知道我可以创建一个 Font 对象,但是我只能将它应用到 JTextArea 对象。
谢谢。
I've got a JTextArea which has the following text "Text1 Text2 Text3".
Is there a way I can make all of them different fonts? E.g. "Text1" is bold, "Text2" is italic and "Text3" is normal?
I know I can create a Font object, however I can only apply it the JTextArea object.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在 JTextArea 中不可能。但您可以使用 JTextPane 或 JEditorPane。
This is not possible in JTextArea. But you can use JTextPane or JEditorPane.