1

私は2つのJavaクラスを持っています。ドキュメント リスナを doc(HTMLDoc) に追加します。もう 1 つは DocumentListener を実装するクラスです。

このクラスに値を返せるようにしたいので、ドキュメントがいつ変更されたかがわかるので、貼り付けられて JTextPane で問題を引き起こしている不要な html を取り除くことができます。

doc = (HTMLDocument) kit.createDefaultDocument();
//setContentType("text/html");
doc.addDocumentListener(new CTextPaneListener());

これはリスナークラスです

public class CTextPaneListener implements DocumentListener
{

    // Gives notification that an attribute or set of attributes changed.
    @Override public void  changedUpdate(DocumentEvent e)
    {
        //System.out.println("DEBUG: changedUpdate() called");
    }

    //Gives notification that there was an insert into the document.        
    @Override public void insertUpdate(DocumentEvent e)
    {
        // I want to be able to return a value or a form a detection
        // so I can tell when there has been a insert.
    }

    //Gives notification that there was a remove from the document.                     
    @Override public void   removeUpdate(DocumentEvent e)
    {
        //System.out.println("DEBUG: removeUpdate called");
    }
}

私はJavaを少しやったことがありますが、数年経っているので少し錆びています。御時間ありがとうございます。

編集:これは私のカスタム DocumentFilter です。当初はこれがペーストをキャッチすると思っていましたが、DocumentListener だけがペーストをキャッチしているようです。

public class CTextPaneFilter extends DocumentFilter
{
    public CTextPaneFilter(Document doc)
    {
        this(doc, 0);
    }

    public CTextPaneFilter(Document doc, int maxChars) {
        this.doc = doc;
        maxCharacters = maxChars;
    }       
    /**
    * Specifies the maximum text input length of the text pane.
    */
    public void setMaxLength(int len)
    {
        maxCharacters = len;
    }
    /**
    * Invoked prior to insertion of text into the specified Document. 
    */
    @Override public void insertString(DocumentFilter.FilterBypass fb, int offset,      String string, AttributeSet attr) throws BadLocationException
    {
    /**
    * Teuncates the inserted string so the contents
    * would be exactly maxCharacters in length.
    */
    System.out.println("insert");

    if (maxCharacters == 0 || (doc.getLength() + string.length()) <= maxCharacters) {
                        fb.insertString(offset, string, attr);
    } else {
        if (doc.getLength() < maxCharacters) {
            fb.insertString(offset, string.substring(0, maxCharacters - doc.getLength()), attr);
        }
    //Toolkit.getDefaultToolkit().beep();
    }
// other overridden methods below
4

1 に答える 1

0

DocumentFilterを見てください。テキストをドキュメントに書き込む前に、テキストを再フォーマットすることができます。

于 2012-11-16T18:13:33.720 に答える