Swing/InsertHtmlText の変更点
- 追加された行はこの色です。
- 削除された行はこの色です。
- Swing/InsertHtmlText へ行く。
- Swing/InsertHtmlText の差分を削除
--- category: swing folder: InsertHtmlText title: JEditorPaneのHTMLDocumentに要素を追加する tags: [JEditorPane, HTMLDocument] author: aterai pubdate: 2014-04-28T15:00:16+09:00 description: JEditorPaneのHTMLDocumentからtable要素を取得し、その子要素としてtr要素などを追加します。 image: https://lh5.googleusercontent.com/-hU9bkPgb4Q8/U10bg5XoDfI/AAAAAAAACEI/BJrmelBz93M/s800/InsertHtmlText.png --- * 概要 [#summary] `JEditorPane`の`HTMLDocument`から`table`要素を取得し、その子要素として`tr`要素などを追加します。 #download(https://lh5.googleusercontent.com/-hU9bkPgb4Q8/U10bg5XoDfI/AAAAAAAACEI/BJrmelBz93M/s800/InsertHtmlText.png) * サンプルコード [#sourcecode] #code(link){{ String HTML_TEXT = "<html><body>head<table id='log' border='1'></table>tail</body></html>"; HTMLEditorKit htmlEditorKit = new HTMLEditorKit(); JEditorPane editor = new JEditorPane(); editor.setEditorKit(htmlEditorKit); editor.setText(HTML_TEXT); 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(); } }} * 解説 [#explanation] - `insertAfterStart` -- `table`要素の開始タグの後に、子要素として`tr`要素を追加 -- `table`要素の開始タグの直後に子要素として`tr`要素を追加 -- 挿入後のスクロールで表示が乱れる場合がある? - `insertBeforeEnd` -- `table`要素の終了タグの前に、子要素として`tr`要素を追加 -- `table`要素の終了タグの直前に子要素として`tr`要素を追加 * 参考リンク [#reference] - [https://docs.oracle.coma/javase/jp/8/docs/api/javax/swing/text/html/HTMLDocument.html#insertAfterStart-javax.swing.text.Element-java.lang.String- HTMLDocument#insertAfterStart(...) (Java Platform SE 8)] * コメント [#comment] #comment - メモ: [https://docs.oracle.com/javase/jp/8/docs/api/javax/swing/text/html/HTMLEditorKit.html#insertHTML-javax.swing.text.html.HTMLDocument-int-java.lang.String-int-int-javax.swing.text.html.HTML.Tag- HTMLEditorKit.html#insertHTML(HTMLDocument, int, String, int, int, HTML.Tag) (Java Platform SE 8)]よりは簡単?速度的にどちらが速いかなどは未検証。 -- &user(aterai); &new{2014-04-28 (月) 15:00:16}; #comment