我想为文本区域中的特定行设置颜色。 到目前为止我发现的是以下
// Declarations
private final DefaultStyledDocument document;
private final MutableAttributeSet homeAttributeSet;
private final MutableAttributeSet awayAttributeSet;
// Usage in the form constructor
jTextAreaLog.setDocument(document);
homeAttributeSet = new SimpleAttributeSet();
StyleConstants.setForeground(homeAttributeSet, Color.blue);
StyleConstants.setItalic(homeAttributeSet, true);
awayAttributeSet = new SimpleAttributeSet();
StyleConstants.setForeground(awayAttributeSet, Color.red);
// Setting the style of the last line
final int start = jTextAreaLog.getLineStartOffset(jTextAreaLog.getLineCount() - 2);
final int length = jTextAreaLog.getLineEndOffset(jTextAreaLog.getLineCount() - 1) - start;
document.setCharacterAttributes(start, length, awayAttributeSet, true);
但这不起作用。我做错了什么?
编辑:好的,我一直在尝试,我尝试使用final int end = jTextAreaLog.getLineEndOffset(jTextAreaLog.getLineCount() - 1);
document.insertString(end, "someText", awayAttributeSet);
添加文字而不是添加重新打印,但无济于事。
答案 0 :(得分:9)
我不确定JTextArea是否可以如此详细地设置样式,因为它可能会根据所选字体,颜色等为整个文档设置样式。使用JTextPane / JEditorPane可能会有更多的运气。
编辑:来自javadoc
JTextArea是一个多行区域 显示普通文字。
(重点是补充。)
如果您可以移动到JTextPane,那么将呈现格式。
答案 1 :(得分:0)
创建一个自定义swing文档,例如PlainDocument,并有一个自定义HighlightedView,负责绘制标记。