刚刚尝试为JTextPane中的文本着色-但问题是文本和下划线不能具有不同的颜色。我应该怎么做,甚至有可能?下面的示例以红色打印所有文本和下划线。

JTextPane pane = new JTextPane();

StyleContext context = new StyleContext();

Style style = pane.addStyle("Black", null);
StyleConstants.setAlignment(style, StyleConstants.ALIGN_RIGHT);
StyleConstants.setFontSize(style, 14);
StyleConstants.setSpaceAbove(style, 4);
StyleConstants.setSpaceBelow(style, 4);
StyleConstants.setForeground(style, Color.BLACK);

StyledDocument document = pane.getStyledDocument();


style = pane.addStyle("Red Underline", style);
StyleConstants.setForeground(style, Color.RED);
StyleConstants.setUnderline(style, true);

pane.getDocument().insertString(0,  "Test String", style);

最佳答案

这是我找到的解决方案...

Underline StyleConstant in a different colour with AttributeSet

这是示例代码的链接

http://java-sl.com/tip_colored_strikethrough.html

只需更改以下行即可解决...

int y = a.getBounds().y + a.getBounds().height + 2 ;

而且效果很好

08-25 14:25