在不使用 HTML 的情况下在 JTextPane 中将单行加粗
我试图在 JTextPane 中加粗一行,但我所做的一切都不起作用。 我尝试用新的粗体字体编写该行,但没有帮助。
Font font = new Font("Consolas", Font.BOLD, 11);
textPane.setFont(font);
textPane.setText(textPane.getText() + "\n" + getTimeStamp() + sender + ": " + message);
textPane.setFont(defaultFont);
我该怎么做?
I'm trying to bold a single line in my JTextPane, but nothing I do is working.
I've tried writing the line with a new, bolded font, but it didn't help.
Font font = new Font("Consolas", Font.BOLD, 11);
textPane.setFont(font);
textPane.setText(textPane.getText() + "\n" + getTimeStamp() + sender + ": " + message);
textPane.setFont(defaultFont);
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是从 JTextPane 获取 StyledDocument,并使用 setCharacterAttributes() 方法。
StyledDocument 对象上的 setCharacterAttributes 方法允许您为特定字符范围设置一组属性,其中可以包括粗体。
请参阅 Javadoc 了解更多信息
一些示例代码可能是
The easiest way to do this, is to get the StyledDocument from the JTextPane, and to use the setCharacterAttributes() method.
The setCharacterAttributes method on the StyledDocument object allows you to set for a specific character range, a set of attributes, which can include BOLD.
See the Javadoc for more info
Some sample code could be
需要注意的是确保您使用的字体系列在您的系统上实际上具有粗体字体。我开始使用 Monaco(在 OSX 上),它只包含常规字体。一切都不起作用,直到我转向 Menlo,它有一个 Menlo Bold 条目。
这是一些基于 Oracle 示例的代码。
Something to watch out for is to ensure that the font family you use actually has a bold font on your system. I started out using Monaco (on OSX) which only includes a regular font. Nothing worked until I switched to Menlo, which had a Menlo Bold entry.
Here is some code based on Oracle's example.