1

で単語が出現するすべてを強調表示する必要がありますJEditorPane。このために、次のコードを使用しています。

 try
{          
javax.swing.text.DefaultHighlighter.DefaultHighlightPainter highlightPainter = 
    new javax.swing.text.DefaultHighlighter.DefaultHighlightPainter(Color.YELLOW);
textPane.getHighlighter().addHighlight(startPos, endPos, 
highlightPainter);
}
catch(Exception ex)
{
}

しかし、どうすれば単語のインデックスの位置を与えることができますか?

ファイルからコンテンツを読み取っていますが、HTML タグも読み取っていて、単語のインデックスが乱れています。

4

3 に答える 3

10

基本的に、必要な一致を探してドキュメントを歩くことができるはずです...

ここに画像の説明を入力してください

public class TestEditorPane01 {

    public static void main(String[] args) {
        new TestEditorPane01();
    }

    public TestEditorPane01() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                }

                JEditorPane editor = new JEditorPane();
                try {
                    editor.setPage(new File("Test.html").toURI().toURL());
                } catch (Exception exp) {
                    exp.printStackTrace();
                }

                JFrame frame = new JFrame();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(new JScrollPane(editor));
                frame.setSize(400, 400);
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);

                Document document = editor.getDocument();
                try {
                    String find = "Method";
                    for (int index = 0; index + find.length() < document.getLength(); index++) {
                        String match = document.getText(index, find.length());
                        if (find.equals(match)) {
                            javax.swing.text.DefaultHighlighter.DefaultHighlightPainter highlightPainter =
                                    new javax.swing.text.DefaultHighlighter.DefaultHighlightPainter(Color.YELLOW);
                            editor.getHighlighter().addHighlight(index, index + find.length(),
                                    highlightPainter);
                        }
                    }
                } catch (BadLocationException ex) {
                    ex.printStackTrace();
                }

            }
        });
    }
}

これにより、ドキュメント全体がウォークされ、すべての一致が強調表示されます。これもケースセンシティブマッチです;)

于 2012-11-19T06:56:34.240 に答える
3

これが私の場合です。EditorPane で 1 つの検索語を強調表示する必要があります。

    // text in EditPane
    String text = rSyntaxTextArea.getText();
    if (text != null && !"".equals(filterText.getText())) {
        Highlighter hilit = new RSyntaxTextAreaHighlighter();
        rSyntaxTextArea.setHighlighter(hilit);  
        for (int index = text.toUpperCase().indexOf(
                // searched text
                filterText.getText().toUpperCase()); index >= 0; index = text
                .toUpperCase().indexOf(
                        filterText.getText().toUpperCase(), index + 1)) {
            int end = index + filterText.getText().length();
            HighlightPainter painter = new DefaultHighlighter.DefaultHighlightPainter(
                    Color.LIGHT_GRAY);
            try {
                hilit.addHighlight(index, end, painter);
            } catch (BadLocationException e) {
                e.printStackTrace();
            }
        }
    }

それが役立つことを願っています。

于 2012-11-19T06:24:13.497 に答える
1

以下のようなことができます。

getHighlighter().addHighlight(start, end, 
         new DefaultHighlighter.DefaultHighlightPainter(Color.red));
于 2012-11-19T06:27:58.993 に答える