• title: JTextPaneに修飾した文字列を挿入 tags: [JTextPane, StyledDocument] author: aterai pubdate: 2004-01-12 description: JTextPaneに、スタイル付けした文字列を挿入して、ログ風に表示します。

概要

JTextPaneに、スタイル付けした文字列を挿入して、ログ風に表示します。

サンプルコード

StyledDocument doc = jtp.getStyledDocument();
Style def = StyleContext.getDefaultStyleContext().getStyle(
    StyleContext.DEFAULT_STYLE);

Style regular = doc.addStyle("regular", def);
//StyleConstants.setForeground(def, Color.BLACK);

Style error = doc.addStyle("error", regular);
StyleConstants.setForeground(error, Color.RED);
View in GitHub: Java, Kotlin
private void append(String str, boolean flg) {
  String style = flg?"regular":"error";
  StyledDocument doc = jtp.getStyledDocument();
  try{
    doc.insertString(doc.getLength(), str+"\n", doc.getStyle(style));
  }catch(BadLocationException e) {
    e.printStackTrace();
  }
}

解説

予め設定しておいたエラー表示用のスタイル(文字属性)を、StyledDocument#getStyle("error")で取得し、これを文字列と一緒にDocument#insertStringメソッドを使って挿入しています。

参考リンク

コメント