JEditorPaneのHTMLDocumentに要素を追加する
Total: 4055
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
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
要素を追加