我有一个文本字段,当用户单击名为 btnSearch 的按钮时,用户可以在其中输入一个世界以搜索 JTable。
每次我尝试执行搜索时,什么都没有发生,并且在调试时抛出异常(参见下面的错误),表明错误发生在 if 语句条件下。你能解释一下我应该怎么做才能解决这个问题吗
错误:
Exception in thread "AWT-EventQueue-0" java.lang.NoSuchMethodError:com.mysql.jdbc.StringUtils.isEmptyOrWhitespaceOnly(Ljava/lang/String;)Z
搜索按钮背后的代码:
btnSearch.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
String entry =txtSearchData.getText();
if (StringUtils.isEmptyOrWhitespaceOnly(entry)){
}else{
}
txtSearchData.setText(" ");
}
});