JTextPaneに修飾した文字列を挿入
Total: 16942
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
JTextPane
にスタイル付けした文字列を挿入してログ風に表示します。
Screenshot
Advertisement
サンプルコード
StyledDocument doc = jtp.getStyledDocument();
Style def = doc.getStyle(StyleContext.DEFAULT_STYLE);
Style error = doc.addStyle("error", def);
StyleConstants.setForeground(error, Color.RED);
// ...
private void append(String str, boolean flg) {
String style = flg ? StyleContext.DEFAULT_STYLE : "error";
StyledDocument doc = jtp.getStyledDocument();
try {
doc.insertString(doc.getLength(), str + "\n", doc.getStyle(style));
} catch (BadLocationException e) {
e.printStackTrace();
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、以下の手順でJTextPane
にスタイルを設定した文字列を追加しています。
JTextPane
からStyledDocument
を取得- 予め設定しておいたエラー表示用の文字属性スタイルを
StyledDocument#getStyle("error")
メソッドで取得 - このスタイルと文字列と合わせて
Document#insertString(...)
メソッドで挿入
参考リンク
- Using Text Components (The Java™ Tutorials > Creating a GUI With JFC/Swing > Using Swing Components)