我使用DocumentListener
来处理任何变化JTextPane
文件。 当用户键入我要删除的内容JTextPane
和插入自定义文字。 它是不可能更改文档中DocumentListener
,而不是一个解决方案是在这里说: java.lang.IllegalStateException而在文本区域,使用Java文档侦听 ,但我不明白的是,至少我不知道该怎么在我的情况怎么办?
Answer 1:
DocumentListener
是真的只更改的通知好,不应该被用来修改文本域/文件。
相反,使用DocumentFilter
检查这里的例子
FYI
你的问题的根源当然在于DocumentListener
通知当文档被更新。 尝试(从冒着无限循环开)修改文档把文档转换为无效状态,因此例外
更新了一个例子
这是非常基本的例子......它不插入处理或删除,但我的测试有没有删除反正做什么工作?
public class TestHighlight {
public static void main(String[] args) {
new TestHighlight();
}
public TestHighlight() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}
JTextPane textPane = new JTextPane(new DefaultStyledDocument());
((AbstractDocument) textPane.getDocument()).setDocumentFilter(new HighlightDocumentFilter(textPane));
JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(new JScrollPane(textPane));
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class HighlightDocumentFilter extends DocumentFilter {
private DefaultHighlightPainter highlightPainter = new DefaultHighlightPainter(Color.YELLOW);
private JTextPane textPane;
private SimpleAttributeSet background;
public HighlightDocumentFilter(JTextPane textPane) {
this.textPane = textPane;
background = new SimpleAttributeSet();
StyleConstants.setBackground(background, Color.RED);
}
@Override
public void insertString(FilterBypass fb, int offset, String text, AttributeSet attr) throws BadLocationException {
System.out.println("insert");
super.insertString(fb, offset, text, attr);
}
@Override
public void remove(FilterBypass fb, int offset, int length) throws BadLocationException {
System.out.println("remove");
super.remove(fb, offset, length);
}
@Override
public void replace(FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
String match = "test";
super.replace(fb, offset, length, text, attrs);
int startIndex = offset - match.length();
if (startIndex >= 0) {
String last = fb.getDocument().getText(startIndex, match.length()).trim();
System.out.println(last);
if (last.equalsIgnoreCase(match)) {
textPane.getHighlighter().addHighlight(startIndex, startIndex + match.length(), highlightPainter);
}
}
}
}
}
Answer 2:
当用户键入我想删除的JTextPane的内容,并插入自定义文字。
这是不是为找工作的DocumentListener ,基本上是这样的监听器被设计为触发事件出从JTextComponent的 S到另一个的JComponent,到Swing GUI,在使用的Java实现的方法
有看的DocumentFilter ,这提供所需的方法来更改,修改或更新自己的文件 (模型JTextComponents上运行时)
Answer 3:
总结你在调用代码SwingUtilities.invokeLater()
文章来源: java change the document in DocumentListener