张海锋 2015-05-06 02:09 采纳率: 54.5%
浏览 2082
已采纳

为什么当我点击登陆按钮的时候没有反应。

我希望当点击登陆按钮的时候,就会跳转到聊天界面。
package sql;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;

import javax.swing.*;
class liaotian extends JFrame implements ActionListener{
JPanel jpanel1;
TextArea textArea1;
TextField textField3;
JButton jButton1;
liaotian(){
this.setTitle("对话");
this.setSize(600,600);
this.setVisible(true);
jpanel1=new JPanel();
textArea1=new TextArea(15,15);
jButton1=new JButton("发送");
textField3=new TextField(10);
jpanel1.add(textArea1);
jpanel1.add(jButton1);jpanel1.add(textField3);
}
public void actionPerformed(ActionEvent e) {
if(e.getSource()==jButton1){
textArea1.setText(textField3.getText());
textField3.setText("");
}}}
public class lianxi2 extends JFrame implements ActionListener{
JPanel jpanel;
Label label1;
TextField textField1;
Label label2;
TextField textField2;
JButton jButton;
static String col11,col12;
public lianxi2(){
super("登陆");
jpanel=new JPanel();
this.setVisible(true);
this.setSize(600,600);
label1=new Label("账号");
textField1=new TextField(15);
label2=new Label("密码");
textField2=new TextField(15);
jButton=new JButton("登陆");
jpanel.add(label1); jpanel.add(textField1);
jpanel.add(label2); jpanel.add(textField2);
jpanel.add(jButton);
this.add(jpanel);

     }
public static void main(String[] args) {
    lianxi2 lt = new lianxi2();
    try{
        Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");//加载数据库驱动
        Connection conn=DriverManager.getConnection("jdbc:sqlserver://localhost:1433;Database=denglu","sa","123456");//链接数据库
        Statement statement=conn.createStatement();

        ResultSet rs = statement.executeQuery("select * from denglu ");
        while(rs.next()){
                 col11= rs.getString("zhanghao");
                 col12 = rs.getString("mima");   
               }
        conn.close();
        }

catch(Exception e){
e.printStackTrace();
}
}

public void actionPerformed(ActionEvent e) {
if(e.getSource()==jButton){
if(textField1.getText()==col11){
if(textField2.getText()==col12){
liaotian m=new liaotian();
m.setVisible(true);
}
}
}

}}
  • 写回答

2条回答

  • yanxiangfei11 2015-05-06 07:46
    关注

    因为判断为else否咯 当然不能执行liaotian m=new liaotian();

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 luckysheet
  • ¥15 ZABBIX6.0L连接数据库报错,如何解决?(操作系统-centos)
  • ¥15 找一位技术过硬的游戏pj程序员
  • ¥15 matlab生成电测深三层曲线模型代码
  • ¥50 随机森林与房贷信用风险模型
  • ¥50 buildozer打包kivy app失败
  • ¥30 在vs2022里运行python代码
  • ¥15 不同尺寸货物如何寻找合适的包装箱型谱
  • ¥15 求解 yolo算法问题
  • ¥15 虚拟机打包apk出现错误