Swing/InsertHtmlText のバックアップ(No.10)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- 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:
概要
JEditorPane
のHTMLDocument
からtable
要素を取得し、その子要素としてtr
要素などを追加します。
Screenshot
Advertisement
サンプルコード
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();
}
View in GitHub: Java, Kotlin解説
insertAfterStart
table
要素の開始タグの後に、子要素としてtr
要素を追加- 挿入後のスクロールで表示が乱れる場合がある?
insertBeforeEnd
table
要素の終了タグの前に、子要素としてtr
要素を追加