gpt4 book ai didi

java - 查找/替换高亮替换词 Netbeans/Java

转载 作者:行者123 更新时间:2023-11-30 11:05:59 26 4
gpt4 key购买 nike

关于如何在 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){

}

最佳答案

the closest I get is that only the first occurrence of the word is highlighted, the other highlights are shifted

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

不要使用 textPane()getText()。这将在文本中包含“\r\n”。但是,文档只有“\n”,因此用于突出显示的索引将每增加一行就关闭一个。

您已经使用文档中的文本:

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

所以只需搜索“文本”变量即可。

查看 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();
}
});
}
}

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

编辑2:

使用文档中的初始文本字符串的更高效的查找/替换算法:

    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) {}
}
});

关于java - 查找/替换高亮替换词 Netbeans/Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29449874/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com