溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java怎么實(shí)現(xiàn)簡(jiǎn)單登陸界面

發(fā)布時(shí)間:2023-05-12 10:59:36 來源:億速云 閱讀:83 作者:zzz 欄目:編程語言

這篇“Java怎么實(shí)現(xiàn)簡(jiǎn)單登陸界面”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Java怎么實(shí)現(xiàn)簡(jiǎn)單登陸界面”文章吧。

1、首先需要建立一個(gè)類,在這里,我命名為newLogin

newLogin類的代碼如下

package p4;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPasswordField;
import javax.swing.JRadioButton;
import javax.swing.JTextField;
public class newLogin extends JFrame implements ActionListener{
    private static final long serialVersionUID = 1L;
    private Connection con = null;
    private Statement statement = null;
    private ResultSet res = null;
    private ButtonGroup buttongroup = new ButtonGroup();
    private MyPanel jp = new MyPanel();
    private JLabel ul = new JLabel("用戶名:");
    private JLabel pl = new JLabel("密    碼:");
    private JLabel ts = new JLabel("");
    private JTextField uname = new JTextField();
    private JPasswordField pword = new JPasswordField();
    private JRadioButton[] butArray = {
            new JRadioButton("學(xué)生",true),
            new JRadioButton("教師")
    };
    private JButton login = new JButton("登陸");
    private JButton reset = new JButton("重置");
    public newLogin() {
        addListener();
        initialFrame();
    }
    private void initialFrame() {
        Font font = new Font("宋體",Font.BOLD,12);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setTitle("登陸");
        jp.setLayout(null);
        ul.setBounds(100, 30, 60, 30);
        jp.add(ul);
        uname.setBounds(170, 30, 140, 30);
        jp.add(uname);
        pl.setBounds(100, 80, 60, 30);
        pword.setBounds(170, 80, 140, 30);
        jp.add(pl);
        jp.add(pword);
        ts.setBounds(100, 160, 200, 50);
        jp.add(ts);
        ts.setFont(font);
        login.setBounds(100, 220, 70, 30);
        jp.add(login);
        login.setFont(font);
        reset.setBounds(220, 220, 70, 30);
        jp.add(reset);
        reset.setFont(font);
        add(jp);
        setResizable(false);
        buttongroup.add(butArray[0]);
        buttongroup.add(butArray[1]);
        butArray[0].setBounds(120, 130, 100, 50);
        jp.add(butArray[0]);
        butArray[1].setBounds(220, 130, 100, 50);
        jp.add(butArray[1]);
        butArray[0].setContentAreaFilled(false);
        butArray[1].setContentAreaFilled(false);
        Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
        int centerX = screenSize.width/2;
        int centerY = screenSize.height/2;
        int w = 427;
        int h = 331;
        setBounds(centerX-w/2, centerY-h/2, w, h);
        setVisible(true);
        uname.requestFocus(true);
        getContentPane().add(jp);
        jp.getRootPane().setDefaultButton(login);
    }
    private void addListener() {
        this.login.addActionListener(this);
        this.uname.addActionListener(this);
        this.pword.addActionListener(this);
    }
    @Override
    public void actionPerformed(ActionEvent e) {
        if(e.getSource() == uname) {
            pword.requestFocus();
        }
        if(e.getSource() == pword) {
            butArray[0].requestFocus();
        }
        if(e.getSource() == butArray[0]||e.getSource() == butArray[1]||e.getSource() == login) {
//            this.ts.setText("正在為您努力加載,請(qǐng)稍等......");
            
            int type = this.butArray[0].isSelected()?0:1;
            String username = this.uname.getText().trim();
            char[] p = this.pword.getPassword();
            String password = String.valueOf(p).trim();
            if(username.equals("")) {
                JOptionPane.showMessageDialog(this, "請(qǐng)輸入用戶名!","錯(cuò)誤",JOptionPane.ERROR_MESSAGE);
                ts.setText("");
                return ;
            }
            if(password.equals("")) {
                JOptionPane.showMessageDialog(this, "請(qǐng)輸入密碼!","錯(cuò)誤",JOptionPane.ERROR_MESSAGE);
                ts.setText("");
                return ;
            }
            try {
                con = new connection().getConnection();  //調(diào)用自己寫的一個(gè)數(shù)據(jù)庫連接類
                statement = con.createStatement();
                if(type == 0) {
                    String sql = "select * from stuuser where "+
                        "username_stu='"+username+"'and password_stu='"+password+"'";
                    res = statement.executeQuery(sql);
                    if(res.next()) {
                        JOptionPane.showMessageDialog(this, "登錄成功!","提示",JOptionPane.INFORMATION_MESSAGE);
                        this.dispose();
                    }
                    else {
                        JOptionPane.showMessageDialog(this, "用戶名或密碼錯(cuò)誤!","錯(cuò)誤",JOptionPane.ERROR_MESSAGE);
                        ts.setText("");
                        uname.setText("");
                        pword.setText("");
                    }
                    //關(guān)閉數(shù)據(jù)庫連接
                    if(res != null) {
                        res.close();
                    }
                    if(statement != null) {
                        statement.close();
                    }
                    if(con != null) {
                        con.close();
                    }
                }
                else {
                    String sql = "select * from teauser where "+
                            "username_tea='"+username+"'and password_tea='"+password+"'";
                        res = statement.executeQuery(sql);
                        if(res.next()) {
                            String spec_name = res.getString(1);
                            JOptionPane.showMessageDialog(this, "登錄成功!","提示",JOptionPane.INFORMATION_MESSAGE);
                            this.dispose();
                        }
                        else {
                            JOptionPane.showMessageDialog(this, "用戶名或密碼錯(cuò)誤!","錯(cuò)誤",JOptionPane.ERROR_MESSAGE);
                            ts.setText("");
                            uname.setText("");
                            pword.setText("");
                        }
                        //關(guān)閉數(shù)據(jù)庫連接
                        if(res != null) {
                            res.close();
                        }
                        if(statement != null) {
                            statement.close();
                        }
                        if(con != null) {
                            con.close();
                        }
                }
            }catch(SQLException ea) {
                ea.printStackTrace();
            }
        }
        else if(e.getSource() == reset) {
            uname.setText("");
            pword.setText("");
        }
    }
}

2、編寫數(shù)據(jù)庫連接類,在這里命名為connection,然后在類里寫一個(gè)獲取連接的放回,并返回一個(gè)連接。

connection類的代碼如下:

package p4;

import java.sql.Connection;
import java.sql.DriverManager;
//import java.sql.ResultSet;
import java.sql.SQLException;
//import java.sql.Statement;

public class connection {
    private Connection con = null;
//    private Statement statement = null;
//    private ResultSet res = null;
    String driver = "com.mysql.cj.jdbc.Driver";
    String url  = "jdbc:mysql://localhost:3306/Stu_manager?serverTimezone=Asia/Shanghai";
    String name = "root";
    String passwd = "123456";
    public connection() {
        
    }
    public Connection getConnection() {
        try{
            Class.forName(driver).newInstance();
            con = DriverManager.getConnection(url,name,passwd);
            }catch(ClassNotFoundException e){
                System.out.println("對(duì)不起,找不到這個(gè)Driver");
                e.printStackTrace();
            }catch(SQLException e){
                
                e.printStackTrace();
            }catch(Exception e){
                e.printStackTrace();
            }
        return con;
    }
}

3、在MySQL數(shù)據(jù)庫中需建立兩個(gè)用戶表,分別用來存儲(chǔ)不同用戶的登陸賬號(hào)和密碼,這里學(xué)生用戶表為stuuser,教師用戶表為teauser,建表的SQL語句如下:

stuuser表:

create table stuuser(
    username_stu varchar(20) primary key,
    password_stu char(20) not null,
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

teauser表:

create table teauser(
    username_tea varchar(20) primary key,
    password_tea char(20) not null,
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

Java怎么實(shí)現(xiàn)簡(jiǎn)單登陸界面

以上就是關(guān)于“Java怎么實(shí)現(xiàn)簡(jiǎn)單登陸界面”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI