查找/替换突出显示已替换的单词Netbeans / Java

时间:2015-04-04 18:18:44

标签: java swing netbeans

如何突出显示JTextpane中替换的单词的任何想法。我尝试了很多选项但最接近的是只有第一次出现的单词突出显示,其他高亮显示被移动。我用下面的方法。我已经用它来查找和突出显示单词。所以我想如果我可以修改一下,我也可以将它用于查找和替换方法。感谢。

Highlighter.HighlightPainter PaintChange = new PaintFind(Color.yellow);

    try {
            Highlighter color = textpane.getHighlighter();
            String find = FieldFind.getText();
            String replace = FieldReplace.getText();
            Document doc = textpane.getDocument();
            String text = doc.getText(0, doc.getLength());
            int pos = 0;
            int counter = 0;

            while((pos=text.toUpperCase().indexOf(find.toUpperCase(), pos))>=0) {

                int i = textpane.getText().indexOf(find, 0);
                textpane.select(i, i+find.length());
                text.replaceSelection(FieldReplace.getText());

                color.addHighlight(pos, pos+replace.length(), PaintFind);
                pos += find.length();

                counter++;
            }
            status.setText("Nuber of changed words: " + " " + Integer.toString(counter));

        } catch(Exception e){

        }

1 个答案:

答案 0 :(得分:1)

  

我得到的最接近的是,只有第一次出现的单词被突出显示,其他高亮被移动

int i = textpane.getText().indexOf(find, 0);

请勿使用textPane()getText()。这将包括文本中的“\ r \ n”。但是,文档只有“\ n”,因此用于突出显示的索引将为每个附加行关闭一个。

您已经使用Dcoument中的文字:

String text = doc.getText(0, doc.getLength());

所以只需搜索“text”变量。

查看Text and New Lines以获取更多详细信息。

编辑:

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;

public class FindSSCCE extends JPanel
{
    JTextField find = new JTextField(10);
    JTextField replace = new JTextField(10);
    JTextPane textPane = new JTextPane();
    Highlighter.HighlightPainter painter = new DefaultHighlighter.DefaultHighlightPainter( Color.cyan );

    public FindSSCCE()
    {
        setLayout( new BorderLayout() );

        JPanel north = new JPanel( new GridLayout(0, 2) );
        north.add( new JLabel("Find") );
        north.add( find );
        north.add( new JLabel("Replace") );
        north.add( replace );
        add(north, BorderLayout.NORTH);

        add(new JScrollPane(textPane));

        JButton findReplace = new JButton("Find and Replace");
        add(findReplace, BorderLayout.SOUTH);
        findReplace.addActionListener( new ActionListener()
        {
            @Override
            public void actionPerformed(ActionEvent e)
            {
                try
                {
                    String findText = find.getText();
                    int findLength = findText.length();
                    String replaceText = replace.getText();
                    int replaceLength = replaceText.length();

                    Document doc = textPane.getDocument();
                    String text = doc.getText(0, doc.getLength());
                    int offset = 0;

                    while ((offset = text.indexOf(findText, offset)) != -1)
                    {
                        textPane.select(offset, offset + findLength);
                        textPane.replaceSelection( replaceText );

                        textPane.getHighlighter().addHighlight(offset, offset + replaceLength, painter);
                        offset += replaceLength;
                        text = doc.getText(0, doc.getLength());
                    }
                }
                catch(BadLocationException ble) {}
            }
        });
    }

    private static void createAndShowGUI()
    {
        JFrame frame = new JFrame("FindSSCCE");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add( new FindSSCCE() );
        frame.setLocationByPlatform( true );
        frame.setSize(400, 300);
        frame.setVisible( true );
    }

    public static void main(String[] args)
    {
        EventQueue.invokeLater(new Runnable()
        {
            public void run()
            {
                createAndShowGUI();
            }
        });
    }
}

请注意,这不是一个非常有效的解决方案,因为每次进行更改时都需要从文档中获取文本,以确保搜索文本字符串时的偏移量与文档中的文本同步。

EDIT2:

一种更有效的查找/替换算法,它使用Document中的初始文本字符串:

    findReplace.addActionListener( new ActionListener()
    {
        @Override
        public void actionPerformed(ActionEvent e)
        {
            try
            {
                textPane.getHighlighter().removeAllHighlights();
                String findText = find.getText();
                int findLength = findText.length();
                String replaceText = replace.getText();
                int replaceLength = replaceText.length();

                Document doc = textPane.getDocument();
                String text = doc.getText(0, doc.getLength());
                int count = 0;
                int offset = 0;

                while ((offset = text.indexOf(findText, offset)) != -1)
                {
                    int replaceOffset = offset + ((replaceLength - findLength) * count);
                    textPane.select(replaceOffset, replaceOffset + findLength);
                    textPane.replaceSelection( replaceText );

                    textPane.getHighlighter().addHighlight(replaceOffset, replaceOffset + replaceLength, painter);
                    offset += replaceLength;
                    //text = doc.getText(0, doc.getLength());
                    count++;
                }
            }
            catch(BadLocationException ble) {}
        }
    });