//输出信息
public void tishi(String a) {
textField.setText(a);
frame.revalidate();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
textField.setText("");
frame.revalidate();
}
//登录数据库 信息在界面显示
public boolean getConnection() {
try {
//加载驱动
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
windown.tishi("驱动连接成功");
//驱动程序加载成功后的提示信息
//数据库连接参数
String URL="jdbc:sqlserver://localhost:1433;DatabaseName=实训_工资管理系统";
String username = "sa";
String password = "123456";
//创建数据库连接
con = DriverManager.getConnection(URL, username, password);
//连接数据库成功后的提示信息
windown.tishi("数据库连接成功");
} catch (ClassNotFoundException e) {
//驱动加载没有成功
windown.tishi("数据库连接失败");
} catch (SQLException e) {
e.printStackTrace();
//连接失败
windown.tishi("密码或者用户名错误");
}
return false;
}
// 点击登录 鼠标事件
class myMouse extends MouseAdapter{
public void mouseClicked(MouseEvent e) {
if(e.getSource() == panel.get_btnNewButton_2()) {
if(sql.getConnection()) flag = true;
}
else if(e.getSource() == panel.get_btnNewButton_3()) {
System.exit(0);
}
}
}
```我写了一个函数 在函数里面new一个jbutton加到jframe里面 自己写代码调用可以显示出来 但用事件类去调用函数却显示不出来 有没有大神知道为什么