本次实现功能是从mysql数据库中读取用户名(studentName)和密码(loginPwd),在GUI上实现登陆的功能
这是mysql数据库中的相关数据 数据库跟我上次建的数据库是一样的。
数据库代码:
CREATE TABLE `student` ( |
具体图表:
Eclipse中的具体代码:
package task1;
import java.awt.EventQueue;
import java.awt.Frame;
import javax.swing.JOptionPane;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.JButton;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class Test01 extends JFrame {
private JPanel contentPane;
private JTextField textField;
private JTextField textField_1;
private String str = null;
private String password = null;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try<