如何从 JEditorPane 获取光标当前所在行的行文本?
How do I get the line text from a JEditorPane for the line where my cursor is currently positioned?
我有一个 JEditorPane,我在上面放了一个鼠标侦听器,可以检测光标的位置。
但是,我希望能够获取光标所在行的文本。有没有我可以使用的实用方法?如果没有,那么我将如何构建一个方法来做到这一点?
xmlEditor.addMouseListener(
new MouseAdapter() {
public void mouseClicked(MouseEvent me) {
try {
int caretPosition = xmlEditor.getCaretPosition();
int offset = 0;
int length = 0;
xmlEditor.getText(offset, length);
} catch (BadLocationException ex) {
Logger.getLogger(EZXPathFrame.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
);
Is there a utility method I can use?
从未尝试过使用 JEditorPane,但您可以使用 Utilities
class。您应该能够使用 getRowStart(...)
和 getRowEnd(...)
等方法。知道开始和结束偏移量后,您可以从 JEditorPane 获取文本。
类似于:
int start = Utilities.getRowStart(textComponent, offset);
int end = Utilities.getRowEnd(textComponent, offset);
String text = textComponent.getText(start, end-start);
我有一个 JEditorPane,我在上面放了一个鼠标侦听器,可以检测光标的位置。
但是,我希望能够获取光标所在行的文本。有没有我可以使用的实用方法?如果没有,那么我将如何构建一个方法来做到这一点?
xmlEditor.addMouseListener(
new MouseAdapter() {
public void mouseClicked(MouseEvent me) {
try {
int caretPosition = xmlEditor.getCaretPosition();
int offset = 0;
int length = 0;
xmlEditor.getText(offset, length);
} catch (BadLocationException ex) {
Logger.getLogger(EZXPathFrame.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
);
Is there a utility method I can use?
从未尝试过使用 JEditorPane,但您可以使用 Utilities
class。您应该能够使用 getRowStart(...)
和 getRowEnd(...)
等方法。知道开始和结束偏移量后,您可以从 JEditorPane 获取文本。
类似于:
int start = Utilities.getRowStart(textComponent, offset);
int end = Utilities.getRowEnd(textComponent, offset);
String text = textComponent.getText(start, end-start);