向 JTextPane 添加多个文本,而不是用另一个文本替换每个文本
add multiple texts to JTextPane, and not replace each text with another
我似乎真的找不到要求将多个文本添加到 JTextPane 的问题。此外,append 不适用于 JTextPane。
konsol = new JTextPane();
konsol.setText("something" + "\n");
这是我试过的方法,但它只是替换了旧文本。怎么办?
我以前用过类似的方法,我可以分享给你:
class JTextPaneExample {
public static void main(String[] args) {
JTextPane tp = new JTextPane();
tp.setSize(250, 250);
appendToPane(tp, "Hello Java,\n\n", Color.BLACK);
appendToPane(tp, "Hello Suing,\n\n\n\n", Color.BLUE);
appendToPane(tp, "Hello......,\n", Color.RED);
JFrame f = new JFrame();
f.setSize(300, 300);
f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
f.setLocationRelativeTo(null);
f.add(tp);
f.setVisible(true);
}
public static void appendToPane(JTextPane tp, String txt, Color clr) {
StyleContext sc = StyleContext.getDefaultStyleContext();
AttributeSet aset = sc.addAttribute(SimpleAttributeSet.EMPTY, StyleConstants.Foreground, clr);
aset = sc.addAttribute(aset, StyleConstants.FontFamily, "Serif");
aset = sc.addAttribute(aset, StyleConstants.Alignment, StyleConstants.ALIGN_JUSTIFIED);
int len = tp.getDocument().getLength();
tp.setCaretPosition(len);
tp.setCharacterAttributes(aset, false);
tp.replaceSelection(txt);
}
}
结果是这样
我似乎真的找不到要求将多个文本添加到 JTextPane 的问题。此外,append 不适用于 JTextPane。
konsol = new JTextPane();
konsol.setText("something" + "\n");
这是我试过的方法,但它只是替换了旧文本。怎么办?
我以前用过类似的方法,我可以分享给你:
class JTextPaneExample {
public static void main(String[] args) {
JTextPane tp = new JTextPane();
tp.setSize(250, 250);
appendToPane(tp, "Hello Java,\n\n", Color.BLACK);
appendToPane(tp, "Hello Suing,\n\n\n\n", Color.BLUE);
appendToPane(tp, "Hello......,\n", Color.RED);
JFrame f = new JFrame();
f.setSize(300, 300);
f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
f.setLocationRelativeTo(null);
f.add(tp);
f.setVisible(true);
}
public static void appendToPane(JTextPane tp, String txt, Color clr) {
StyleContext sc = StyleContext.getDefaultStyleContext();
AttributeSet aset = sc.addAttribute(SimpleAttributeSet.EMPTY, StyleConstants.Foreground, clr);
aset = sc.addAttribute(aset, StyleConstants.FontFamily, "Serif");
aset = sc.addAttribute(aset, StyleConstants.Alignment, StyleConstants.ALIGN_JUSTIFIED);
int len = tp.getDocument().getLength();
tp.setCaretPosition(len);
tp.setCharacterAttributes(aset, false);
tp.replaceSelection(txt);
}
}
结果是这样