在不使用 HTML 的情况下在 JTextPane 中将单行加粗

发布于 2024-12-02 01:08:00 字数 333 浏览 1 评论 0原文

我试图在 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 技术交流群。

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

发布评论

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

评论(2

完美的未来在梦里 2024-12-09 01:08:00

最简单的方法是从 JTextPane 获取 StyledDocument,并使用 setCharacterAttributes() 方法。

StyledDocument 对象上的 setCharacterAttributes 方法允许您为特定字符范围设置一组属性,其中可以包括粗体。

请参阅 Javadoc 了解更多信息

一些示例代码可能是

// set chars 4 to 10 to Bold
SimpleAttributeSet sas = new SimpleAttributeSet(); 
StyleConstants.setBold(sas, true);
textPane.getStyledDocument().setCharacterAttributes(4, 6, sas, false);

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

// set chars 4 to 10 to Bold
SimpleAttributeSet sas = new SimpleAttributeSet(); 
StyleConstants.setBold(sas, true);
textPane.getStyledDocument().setCharacterAttributes(4, 6, sas, false);
木緿 2024-12-09 01:08:00

需要注意的是确保您使用的字体系列在您的系统上实际上具有粗体字体。我开始使用 Monaco(在 OSX 上),它只包含常规字体。一切都不起作用,直到我转向 Menlo,它有一个 Menlo Bold 条目。

这是一些基于 Oracle 示例的代码。

StyledDocument document = textPane.getStyledDocument ();
Style defaultStyle =
      StyleContext.getDefaultStyleContext ().getStyle (StyleContext.DEFAULT_STYLE);
Style regular = document.addStyle ("regular", defaultStyle);

StyleConstants.setBackground (regular, backgroundColor);
StyleConstants.setFontFamily (regular, "Menlo");
StyleConstants.setFontSize (regular, 14);

blackStyle = document.addStyle ("BlackStyle", regular);
StyleConstants.setForeground (blackStyle, Color.black);

redStyle = document.addStyle ("RedStyle", regular);
StyleConstants.setForeground (redStyle, Color.red);
StyleConstants.setBold (redStyle, true);

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.

StyledDocument document = textPane.getStyledDocument ();
Style defaultStyle =
      StyleContext.getDefaultStyleContext ().getStyle (StyleContext.DEFAULT_STYLE);
Style regular = document.addStyle ("regular", defaultStyle);

StyleConstants.setBackground (regular, backgroundColor);
StyleConstants.setFontFamily (regular, "Menlo");
StyleConstants.setFontSize (regular, 14);

blackStyle = document.addStyle ("BlackStyle", regular);
StyleConstants.setForeground (blackStyle, Color.black);

redStyle = document.addStyle ("RedStyle", regular);
StyleConstants.setForeground (redStyle, Color.red);
StyleConstants.setBold (redStyle, true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文