gpt4 book ai didi

java - 删除并替换 JEditorPane 中选定的文本

转载 作者:行者123 更新时间:2023-12-03 01:47:04 25 4
gpt4 key购买 nike

我正在尝试使用 Java Swing 制作一个文本编辑器。我使用 JEditorPane 而不是 JTextArea。我在删除选定文本和替换 JEditorPane 中选定文本时遇到问题。我正在使用的代码是:

public void delete(JEditorPane txt)
{

int start = txt.getSelectionStart();
int end = txt.getSelectionEnd();
String startText = txt.getText().substring(0,start);
String endText = txt.getText().substring(end,txt.getText().length());
txt.setText(startText + endText);
}

我在这里面临的问题是,当我考虑 getSelectionStart() 和 getSelectionEnd() 的值时,它们不考虑换行符,但在使用子字符串时,会考虑换行符。因此,如果我在前面有 5 个换行符的行上使用此代码,则不会删除所选文本,而是从比所选文本少 5 个的位置删除文本。替换也会发生同样的情况。请帮忙。

最佳答案

使用JEditorPane.getDocument().remove()JEditorPane.getDocument().insertString()

关于java - 删除并替换 JEditorPane 中选定的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1985021/

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