• title: JEditorPaneのHTMLDocumentに要素を追加する tags: [JEditorPane, HTMLDocument] author: aterai pubdate: 2014-04-28T15:00:16+09:00 description: JEditorPaneのHTMLDocumentからtable要素を取得し、その子要素としてtr要素などを追加します。

概要

JEditorPaneHTMLDocumentからtable要素を取得し、その子要素としてtr要素などを追加します。

サンプルコード

HTMLDocument doc = (HTMLDocument) editor.getDocument();
Element element = doc.getElement("log");
String ROW_TEXT = "<tr bgColor='%s'><td>%s</td><td>%s</td></tr>";
Date d = new Date();
String tag = String.format(ROW_TEXT, "#FFFFFF", "insertBeforeEnd", d.toString());
try {
  doc.insertBeforeEnd(element, tag);
} catch (BadLocationException | IOException ex) {
  ex.printStackTrace();
}
View in GitHub: Java, Kotlin

解説

  • insertAfterStart
    • table要素の開始タグの後に、子要素としてtr要素を追加
    • 注: 挿入後のスクロールがおかしい場合がある?
  • insertBeforeEnd
    • table要素の終了タグの前に、子要素としてtr要素を追加

コメント