我正在尝试在JTextArea
中对搜索功能进行编码。我这样做是为了找到,但接下来发现我被卡住了。在JOptionPane
。
JTextArea
不应该关闭
private void findActionPerformed(java.awt.event.ActionEvent evt) {
findString = JOptionPane.showInputDialog(null, "Find What", "Find", JOptionPane.INFORMATION_MESSAGE);
text = editorTextArea.getText();
index = text.indexOf(findString, 0);
editorTextArea.setCaretPosition(index);
editorTextArea.setSelectionStart(index);
editorTextArea.setSelectionEnd(index + findString.length());
}
答案 0 :(得分:1)
使用非模态JDialog并在完成最后一次查找后手动处理它。有关JDialog的更多详细信息,请查看http://docs.oracle.com/javase/tutorial/uiswing/components/dialog.html