如果用户输入错误密码超过5次,我会发出安全警告,然后它会弹出一个要求用户解锁的框架,并且框架也会继续循环警告声音。用户解锁后,会跳转回登录框。我的问题是解锁后系统跳回登录框但声音仍在播放。为什么?
这是我的按钮代码跳回登录框架
Staff s = new Staff();
String id = m_id.getText();
String pass = m_pass.getText();
String position = "Manager";
try{
String sql = "Select * from Staff Where Position='"+position+"'";
pst=conn.prepareStatement(sql);
rs=pst.executeQuery();
while(rs.next()){
String add = rs.getString("Staff_ID");
s.setStaff_ID(add);
String add2 = rs.getString("Password");
s.setPassword(add2);
}
if((s.getStaff_ID().equals(id)) && (s.getPassword().equals(pass))){
warning(clip);
dispose();
new login().setVisible(true);
}
}catch(Exception e){
JOptionPane.showMessageDialog(null,e.getMessage());
}
我用它来循环声音
private void warning(){
try {
URL url = this.getClass().getClassLoader().getResource("sound/aleart.wav");
AudioInputStream audioIn = AudioSystem.getAudioInputStream(url);
Clip clip = AudioSystem.getClip();
clip.open(audioIn);
clip.loop(Clip.LOOP_CONTINUOUSLY);
}catch(Exception ex){
JOptionPane.showMessageDialog(null, ex.getMessage());
}
}
我的 GUI 名称是 WarningLogin,我在warning()
这里调用它。
public WarningLogin() {
initComponents();
warning();
}