我无法检测用户输入是否存在。
boolean idFound=false;
while((s = br.readLine()) != null){
if (s.split(",")[1].contains(infoToRemove)) {
continue;
}
wr.println(s);
idFound=true;
}
if(idFound=false)
JOptionPane.showMessageDialog(null,"ID not exist","Error",JOptionPane.ERROR_MESSAGE);
我尝试了此代码,但如果 ID 不存在,则不会出现对话框。