无法断开连接---请教
调用类PasswordDemo创建一个登陆窗口,点击登陆进行连接,点退出断开连接,以下是窗口的登陆和退出的事件的处理。其中TestLogout(glob,name,new String(password))是另一个类传入密码用户名,testSub是他的实列,执行testSub.setUp()
进行连接,testSub.testDisconnect()断开连接。testSub.testDisconnect();放在testSub.setUp();后面可以顺利执行放在退出处理
事件中就不行了,系统告知unkown resource。附件中有PasswordDemo类和TestLogout类。
class listener implements ActionListener{
public void actionPerformed(ActionEvent e) {
if(e.getActionCommand()=="登陆"){
String name=textField.getText();
char[] password=passwordField.getPassword();
glob = new Global();
TestLogout testSub = new TestLogout(glob,name,new String(password));
testSub.setUp();
/**testSub.testDisconnect();放在这里可以顺利执行放在退出处理事件中就不行了*/
System.out.println("姓名"+name);
System.out.println("密码"+new String(password));
}
if(e.getActionCommand()=="退出")
{
testSub.testDisconnect();/**放这就不行了*/
}
}
}
我学编程是半路出家的,找不到原因,请高手指点。