最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊

Java swing7圖書管理系統(tǒng)無注釋美化皮膚包版:含SQL部分和效果圖

2020-04-27 00:22 作者:詩書畫唱  | 我要投稿



package denglu;


import java.awt.Color;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.MouseEvent;

import java.awt.event.MouseListener;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;

import java.util.Vector;


import javax.swing.BorderFactory;

import javax.swing.ButtonGroup;

import javax.swing.JButton;

import javax.swing.JComboBox;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JRadioButton;

import javax.swing.JScrollPane;

import javax.swing.JTable;

import javax.swing.JTextField;

import javax.swing.table.DefaultTableModel;


class shijian_GUL_users1 implements MouseListener, ActionListener {

public yonghuguanli zz = null;


public shijian_GUL_users1(yonghuguanli z) {

this.zz = z;

}


// 按鈕的方法

@Override

public void actionPerformed(ActionEvent arg0) {

// TODO Auto-generated method stub

String btn_wenzi = arg0.getActionCommand();

if (btn_wenzi.equals("查詢")) {

// 先獲取條件

String uid = zz.txt_id.getText().trim();

String uname = zz.txt_uname.getText().trim();

System.out.println(uid + "? " + uname);

zz.users_Load(uid, uname);

} else if (btn_wenzi.equals("增加用戶")) {

String uname = zz.txt_uname1.getText().trim();

String pwd = zz.txt_upwd.getText().trim();

String unames = zz.txt_unames.getText().trim();

String phone = zz.txt_uphone.getText().trim();

String sex = "男";

if (zz.rb2.isSelected()) {

sex = "女";

}


String type = zz.com_type.getSelectedItem().toString();


String uwen = zz.txt_uwen.getText().trim();

String uda = zz.txt_uda.getText().trim();

String sql = "insert into yonghu(yh_uname,yh_pwd,yh_type,"

+ "yh_name,yh_phone,yh_sex,yh_Q,yh_A) values('" + uname

+ "','" + pwd + "','" + type + "','" + unames + "','"

+ phone + "','" + sex + "','" + uwen + "','" + uda + "')";

if (DBUtils.ZSG(sql)) {

JOptionPane.showMessageDialog(null, "增加成功!");

zz.users_Load(null, null);

} else {

JOptionPane.showMessageDialog(null, "增加失敗,請重試!");

}

} else if (btn_wenzi.equals("修改用戶")) {

String uid = zz.txt_uid.getText().trim();

String uname = zz.txt_uname1.getText().trim();

String pwd = zz.txt_upwd.getText().trim();

String unames = zz.txt_unames.getText().trim();

String phone = zz.txt_uphone.getText().trim();


String sex = "男";

if (zz.rb2.isSelected()) {

sex = "女";

}


String uwen = zz.txt_uwen.getText().trim();

String uda = zz.txt_uda.getText().trim();

String type = zz.com_type.getSelectedItem().toString();


String sql = "update yonghu set yh_uname='" + uname + "',yh_pwd='"

+ pwd + "',yh_name='" + unames + "',yh_phone='" + phone

+ "',yh_sex='" + sex + "',yh_Q='" + uwen + "',yh_A='" + uda

+ "',yh_type='" + type + " 'where yh_id='" + uid + "'";

if (DBUtils.ZSG(sql)) {

JOptionPane.showMessageDialog(null, "修改成功!");

zz.users_Load(null, null);

} else {

JOptionPane.showMessageDialog(null, "修改失敗,請重試!");

}

} else if (btn_wenzi.equals("清空")) {

zz.txt_uid.setText("");

zz.txt_uname1.setText("");

zz.txt_upwd.setText("");


zz.txt_uphone.setText("");

zz.txt_unames.setText("");

zz.txt_uwen.setText("");

zz.txt_uda.setText("");

zz.rb1.isSelected();

}

}


// 鼠標(biāo)的方法

@Override

public void mouseClicked(MouseEvent arg0) {

// TODO Auto-generated method stub

if (arg0.getClickCount() == 2) {

int row = zz.jt1.getSelectedRow();

zz.txt_uid.setText(zz.jt1.getValueAt(row, 0).toString());

zz.txt_uname1.setText(zz.jt1.getValueAt(row, 1).toString());

zz.txt_upwd.setText(zz.jt1.getValueAt(row, 2).toString());


String type = zz.jt1.getValueAt(row, 3).toString();

zz.com_type.setSelectedItem(type);


zz.txt_unames.setText(zz.jt1.getValueAt(row, 4).toString());


zz.txt_uphone.setText(zz.jt1.getValueAt(row, 5).toString());


String sex = zz.jt1.getValueAt(row, 6).toString();


if (sex.equals("女")) {

zz.rb2.setSelected(true);

} else if (sex.equals("男")) {

zz.rb1.setSelected(true);

}


zz.txt_uwen.setText(zz.jt1.getValueAt(row, 7).toString());


zz.txt_uda.setText(zz.jt1.getValueAt(row, 8).toString());


} else if (arg0.isMetaDown()) {


int num = JOptionPane.showConfirmDialog(null, "是否確認(rèn)刪除?");

if (num == 0) {

int row = zz.jt1.getSelectedRow();

String uid = zz.jt1.getValueAt(row, 0).toString();

String sql = "delete yonghu where yh_id='" + uid + "'";

if (DBUtils.ZSG(sql)) {

JOptionPane.showMessageDialog(null, "用戶刪除成功!");

zz.users_Load(null, null);

} else {

JOptionPane.showMessageDialog(null, "出現(xiàn)了未知的錯(cuò)誤,請重試!");

}

}

}

}


@Override

public void mouseEntered(MouseEvent arg0) {

// TODO Auto-generated method stub


}


@Override

public void mouseExited(MouseEvent arg0) {

// TODO Auto-generated method stub


}


@Override

public void mousePressed(MouseEvent arg0) {

// TODO Auto-generated method stub


}


@Override

public void mouseReleased(MouseEvent arg0) {

// TODO Auto-generated method stub


}


}


public class yonghuguanli extends JFrame {

public static ArrayList<Integer> arr_type = null;

public static JButton btn_insert, btn_update, btn_qingkong = null;

public static JButton btn_select = null;

public static JComboBox com_type = null;


public static DefaultTableModel dtm = null;

public static JPanel jp1, jp2, jp3 = null;

public static JTable jt1 = null;

public static JLabel lb_id, lb_uname = null;

public static JLabel lb_uid, lb_uname1, lb_upwd, lb_utypename, lb_unames,

lb_uphone, lb_usex, lb_uwen, lb_uda = null;

public static JRadioButton rb1, rb2 = null;

public static JTextField txt_id, txt_uname = null;

public static JTextField txt_uid, txt_uname1, txt_upwd, txt_utypename,

txt_unames, txt_uphone, txt_uwen, txt_uda = null;


public yonghuguanli() {

this.setLayout(null);

this.setTitle("用戶管理");

this.setSize(850, 650);

this.setLocationRelativeTo(null);

jp2 = new JPanel();

jp2.setBorder(BorderFactory.createLineBorder(Color.gray));

jp2.setBounds(510, 0, 220, 130);

jp2.setLayout(null);

com_type = new JComboBox();

String sql = "select * from yh_type";

ResultSet res_type = DBUtils.Select(sql);

arr_type = new ArrayList<Integer>();

try {

while (res_type.next()) {

com_type.addItem(res_type.getObject(2));

arr_type.add(res_type.getInt(1));

}

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}


com_type.setBounds(590, 270, 120, 30);

this.add(com_type);

lb_id = new JLabel("用戶編號(hào):");

lb_id.setBounds(10, 10, 70, 30);

lb_uname = new JLabel("用戶名:");

lb_uname.setBounds(10, 50, 70, 30);

txt_id = new JTextField();

txt_uname = new JTextField();

txt_id.setBounds(80, 10, 120, 30);


txt_uname.setBounds(80, 50, 120, 30);

btn_select = new JButton("查詢");

btn_select.setBounds(30, 90, 130, 30);

jp2.add(btn_select);

jp2.add(lb_id);

jp2.add(lb_uname);

jp2.add(txt_id);

jp2.add(txt_uname);

jp3 = new JPanel();

jp3.setBorder(BorderFactory.createLineBorder(Color.gray));

jp3.setBounds(510, 140, 220, 460);

jp3.setLayout(null);

lb_uid = new JLabel("用戶編號(hào):");


lb_uname1 = new JLabel("用戶名:");

lb_upwd = new JLabel("密碼:");

lb_utypename = new JLabel("用戶類型:");

lb_unames = new JLabel("真實(shí)姓名:");

lb_uphone = new JLabel("手機(jī)號(hào):");

lb_usex = new JLabel("性別:");

lb_uwen = new JLabel("問題:");

lb_uda = new JLabel("答案:");

lb_uid.setBounds(10, 10, 70, 30);

lb_uname1.setBounds(10, 50, 70, 30);

lb_upwd.setBounds(10, 90, 70, 30);

lb_utypename.setBounds(10, 130, 70, 30);

lb_unames.setBounds(10, 170, 70, 30);

lb_uphone.setBounds(10, 210, 70, 30);

lb_usex.setBounds(10, 250, 70, 30);

lb_uwen.setBounds(10, 290, 70, 30);

lb_uda.setBounds(10, 330, 70, 30);

txt_uid = new JTextField();

txt_uname1 = new JTextField();

txt_uid.setEditable(false);

txt_upwd = new JTextField();


txt_uphone = new JTextField();

txt_unames = new JTextField();

txt_uwen = new JTextField();

txt_uda = new JTextField();

txt_uid.setBounds(80, 10, 120, 30);

txt_uname1.setBounds(80, 50, 120, 30);

txt_upwd.setBounds(80, 90, 120, 30);


txt_unames.setBounds(80, 170, 120, 30);

txt_uphone.setBounds(80, 210, 120, 30);

txt_uwen.setBounds(80, 290, 120, 30);

txt_uda.setBounds(80, 330, 120, 30);

rb1 = new JRadioButton("男", true);

rb2 = new JRadioButton("女");

rb1.setBounds(80, 250, 60, 30);

rb2.setBounds(140, 250, 60, 30);

ButtonGroup bg = new ButtonGroup();

bg.add(rb1);

bg.add(rb2);

txt_uid.setEnabled(false);

btn_insert = new JButton("增加用戶");

btn_update = new JButton("修改用戶");

btn_qingkong = new JButton("清空");

btn_insert.setBounds(10, 400, 100, 20);

btn_update.setBounds(110, 400, 100, 20);

btn_qingkong.setBounds(10, 430, 170, 20);

jp3.add(btn_insert);

jp3.add(btn_update);

jp3.add(txt_uid);

jp3.add(txt_uname1);

jp3.add(txt_upwd);


jp3.add(txt_unames);

jp3.add(btn_qingkong);

jp3.add(txt_uphone);

jp3.add(txt_uwen);

jp3.add(txt_uda);

jp3.add(rb1);

jp3.add(rb2);

jp3.add(lb_uid);

jp3.add(lb_uname1);

jp3.add(lb_upwd);

jp3.add(lb_utypename);

jp3.add(lb_unames);

jp3.add(lb_uphone);

jp3.add(lb_usex);

jp3.add(lb_uwen);

jp3.add(lb_uda);

this.add(jp2);

this.add(jp3);

com_type.addActionListener(new shijian_GUL_users1(this));

btn_select.addActionListener(new shijian_GUL_users1(this));

btn_insert.addActionListener(new shijian_GUL_users1(this));

btn_update.addActionListener(new shijian_GUL_users1(this));

btn_qingkong.addActionListener(new shijian_GUL_users1(this));

this.setVisible(true);


users_Load(null, null);

}


public void users_Load(String uid, String username) {


if (jp1 != null) {

this.remove(jp1);

}

String sql = "select * from yonghu where 1=1";

if (uid != null) {

if (uid.length() > 0) {

sql += " and yh_id='" + uid + "'";

}

}

if (username != null) {

if (username.length() > 0) {

sql += " and yh_name like '%" + username + "%'";

}


}

System.out.println(sql);

Vector<Object> v_head = new Vector<Object>();

v_head.add("用戶編號(hào)");

v_head.add("用戶名");

v_head.add("密碼");

v_head.add("用戶類型");

v_head.add("真實(shí)姓名");

v_head.add("手機(jī)號(hào)");

v_head.add("性別");

v_head.add("問題");

v_head.add("答案");

Vector<Vector<Object>> v_body = new Vector<Vector<Object>>();


ResultSet res = DBUtils.Select(sql);

try {

while (res.next()) {

Vector<Object> v = new Vector<Object>();

v.add(res.getObject(1));

v.add(res.getObject(2));

v.add(res.getObject(3));

v.add(res.getObject(12));

v.add(res.getObject(4));

v.add(res.getObject(7));

v.add(res.getObject(6));

v.add(res.getObject(10));

v.add(res.getObject(11));

v_body.add(v);

}

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

// 填充表格

dtm = new DefaultTableModel(v_body, v_head) {

@Override

public boolean isCellEditable(int a, int b) {

return false;

}

};

jt1 = new JTable(dtm);

jt1.addMouseListener(new shijian_GUL_users1(this));

JScrollPane jsp = new JScrollPane(jt1);

jsp.setBounds(0, 0, 500, 600);

jp1 = new JPanel();

jp1.add(jsp);

jp1.setLayout(null);

jp1.setBounds(0, 0, 500, 600);

this.add(jp1);

}

}



package denglu;


import java.awt.Color;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.FocusEvent;

import java.awt.event.FocusListener;

import java.sql.ResultSet;

import java.sql.SQLException;


import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JTextField;


class shijian_zhmm implements FocusListener, ActionListener {


public zhaoHuiMiMa shijian_zhaoHuiMiMa1 = null;


public shijian_zhmm(zhaoHuiMiMa shijian_zhaoHuiMiMa2) {

this.shijian_zhaoHuiMiMa1 = shijian_zhaoHuiMiMa2;

}


@Override

public void actionPerformed(ActionEvent arg0) {

String String_uname = shijian_zhaoHuiMiMa1.txt_uname.getText().trim();

String String_wenti = shijian_zhaoHuiMiMa1.txt_wenti.getText().trim();

String String_daan = shijian_zhaoHuiMiMa1.txt_daan.getText().trim();

String sql = "select * from yonghu where yh_Uname='" + String_uname

+ "'and yh_Q='" + String_wenti + "'and yh_A='" + String_daan

+ "'";

ResultSet res = DBUtils.Select(sql);

try {

if (res.next()) {


new chongzhimimajiemian();

gongjvClass.uname = String_uname;

} else {


JOptionPane.showMessageDialog(null, "答案輸入錯(cuò)誤");

shijian_zhaoHuiMiMa1.lb_daan1.setText("答案輸入錯(cuò)誤");

shijian_zhaoHuiMiMa1.lb_daan1.setForeground(Color.red);

}

} catch (SQLException e) {


e.printStackTrace();

}

}


@Override

public void focusGained(FocusEvent arg0) {


}


@Override

public void focusLost(FocusEvent arg0) {

String uname = shijian_zhaoHuiMiMa1.txt_uname.getText().trim();

String sql = "select * from yonghu where yh_uname='" + uname + "'";

ResultSet res = DBUtils.Select(sql);

try {

if (res.next()) {

String shiJian_wenti = res.getString("yh_Q");

shijian_zhaoHuiMiMa1.txt_wenti.setText(shiJian_wenti);

shijian_zhaoHuiMiMa1.lb_uname1.setText("");


} else {

shijian_zhaoHuiMiMa1.lb_uname1.setText("用戶名錯(cuò)誤");

shijian_zhaoHuiMiMa1.lb_uname1.setForeground(Color.red);

}

} catch (SQLException e) {

e.printStackTrace();

}

}

}


public class zhaoHuiMiMa extends JFrame {

static JButton btn_queren, btn_quxiao = null;

static JLabel lb_uname, lb_wenti, lb_daan = null;

static JLabel lb_uname1, lb_wenti1, lb_daan1 = null;


static JTextField txt_uname, txt_wenti, txt_daan = null;


public zhaoHuiMiMa() {


this.setTitle("找回密碼頁面");

this.setLayout(null);


this.setSize(500, 500);

this.setLocationRelativeTo(null);

lb_uname = new JLabel("用戶名");

lb_wenti = new JLabel("問題");

lb_daan = new JLabel("答案");

lb_uname1 = new JLabel("請輸入用戶名");

lb_daan1 = new JLabel("請輸入答案");

txt_uname = new JTextField();

txt_wenti = new JTextField();

txt_daan = new JTextField();

txt_uname.addFocusListener(new shijian_zhmm(this));

lb_uname1.setForeground(Color.blue);

lb_daan1.setForeground(Color.blue);

lb_uname.setBounds(100, 100, 100, 30);

lb_wenti.setBounds(100, 140, 100, 30);

lb_daan.setBounds(100, 180, 100, 30);

lb_uname1.setBounds(310, 105, 100, 30);

lb_daan1.setBounds(310, 185, 100, 30);

this.add(lb_uname);

this.add(lb_wenti);

this.add(lb_daan);

this.add(lb_uname1);

this.add(lb_daan1);

txt_uname.setBounds(210, 100, 100, 30);

txt_wenti.setBounds(210, 140, 100, 30);

txt_wenti.setEditable(false);

txt_daan.setBounds(210, 180, 100, 30);

this.add(txt_uname);

this.add(txt_wenti);

this.add(txt_daan);

btn_queren = new JButton("確認(rèn)且回答正確后跳轉(zhuǎn)重置密碼頁面");

btn_queren.addActionListener(new shijian_zhmm(this));

btn_quxiao = new JButton("取消");

btn_queren.setBounds(10, 230, 290, 30);

btn_quxiao.setBounds(340, 230, 70, 30);

this.add(btn_queren);

this.add(btn_quxiao);


this.setVisible(true);


}

}




package denglu;


import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;


import javax.swing.ButtonGroup;

import javax.swing.JButton;

import javax.swing.JCheckBox;

import javax.swing.JComboBox;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPasswordField;

import javax.swing.JRadioButton;

import javax.swing.JTextArea;

import javax.swing.JTextField;


class shijian_zhuce implements ActionListener {


public static zhuCe chuangkouneirong2 = null;


public shijian_zhuce(zhuCe shangPinLeiXingXiaLaKuang1) {


this.chuangkouneirong2 = shangPinLeiXingXiaLaKuang1;


}


@Override

public void actionPerformed(ActionEvent arg0) {


JOptionPane.showMessageDialog(null, "點(diǎn)擊了注冊按鈕");


String String_uname = chuangkouneirong2.JTextField_uname.getText();


String String_pwd = chuangkouneirong2.JPasswordField_pwd1.getText();


String String_pwd1 = chuangkouneirong2.JPasswordField_pwd2.getText();


String String_TureName = chuangkouneirong2.JTextField_name.getText();

String String_age = chuangkouneirong2.JComboBox_age.getSelectedItem()

.toString();


String String_sex = "男";


if (chuangkouneirong2.rb2.isSelected()) {

String_sex = "女";

}


String String_phone = chuangkouneirong2.JTextField_phone.getText();


ArrayList<String> jiHe = new ArrayList<String>();


if (chuangkouneirong2.address1.isSelected()) {

jiHe.add(chuangkouneirong2.address1.getText());

}

if (chuangkouneirong2.address2.isSelected()) {

jiHe.add(chuangkouneirong2.address2.getText());

}

if (chuangkouneirong2.address3.isSelected()) {

jiHe.add(chuangkouneirong2.address3.getText());

}

String String_address = " ";


for (int i = 0; i < jiHe.size(); i++) {

String_address += jiHe.get(i) + " ";

}


String String_jieshao = chuangkouneirong2.JTextArea_jieshao.getText();


String String_Q = chuangkouneirong2.JTextField_Q.getText();


String String_A = chuangkouneirong2.JTextField_A.getText();


if (!String_pwd.equals(String_pwd1)) {


JOptionPane.showMessageDialog(null, "兩次密碼輸入不一致, 請重新輸入");


return;


}


String sql_panduanuname = "select * from yonghu where yh_uname='"


+ String_uname + "'";


ResultSet res_select_uname = DBUtils.Select(sql_panduanuname);


try {


if (res_select_uname.next()) {


JOptionPane.showMessageDialog(null, "用戶名已經(jīng)存在了,請重新輸入");


return;


}


} catch (SQLException e) {


e.printStackTrace();


}


String sql = "insert into yonghu(yh_uname,yh_pwd,yh_Name"

+ ",yh_age,yh_sex,yh_phone,yh_address"

+ ",yh_jieshao,yh_Q,yh_A,yh_type) values('" + String_uname

+ "','"


+ String_pwd + "','"


+ String_TureName + "'," + String_age + ",'" + String_sex


+ "','" + String_phone + "','" + String_address + "','"


+ String_jieshao + "','" + String_Q + "','" + String_A + "'"


+ ",'普通用戶')";


if (DBUtils.ZSG(sql)) {


JOptionPane.showMessageDialog(null, "注冊成功");


} else {


JOptionPane.showMessageDialog(null, "出現(xiàn)了未知的錯(cuò)誤,請重試");


}


}


}


public class zhuCe extends JFrame {


static JCheckBox address1, address2, address3 = null;


public static JButton JButton_zhuce = null;


static JComboBox JComboBox_age = null;

public static JPasswordField JPasswordField_pwd1,

JPasswordField_pwd2 = null;


static JTextArea JTextArea_jieshao = null;

public static JTextField JTextField_uname, JTextField_name,

JTextField_phone, JTextField_jieshao, JTextField_Q,

JTextField_A = null;

public static JLabel lb_uname, lb_pwd, lb_qrpwd, lb_name, lb_age, lb_sex,

lb_phone, lb_address, lb_jieshao, lb_Q, lb_A = null;


static JRadioButton rb1, rb2 = null;


public zhuCe() {


this.setLayout(null);

this.setSize(600, 700);

this.setTitle("注冊界面(只有普通用戶才要注冊)");

this.setLocationRelativeTo(null);

lb_uname = new JLabel("用戶名");

lb_pwd = new JLabel("用戶密碼");

lb_qrpwd = new JLabel("確認(rèn)密碼");

lb_name = new JLabel("真實(shí)姓名");

lb_age = new JLabel("年齡");

lb_sex = new JLabel("性別");

lb_phone = new JLabel("電話");

lb_address = new JLabel("地址");

lb_jieshao = new JLabel("介紹");

lb_Q = new JLabel("問題");

lb_A = new JLabel("答案");

lb_uname.setBounds(80, 100, 70, 30);

lb_pwd.setBounds(80, 140, 70, 30);

lb_qrpwd.setBounds(80, 180, 70, 30);

lb_name.setBounds(80, 220, 70, 30);

lb_age.setBounds(80, 260, 70, 30);

lb_sex.setBounds(80, 300, 70, 30);

lb_phone.setBounds(80, 340, 70, 30);

lb_address.setBounds(80, 380, 70, 30);

lb_jieshao.setBounds(80, 420, 70, 30);

lb_Q.setBounds(80, 460, 70, 30);

lb_A.setBounds(80, 500, 70, 30);

this.add(lb_uname);

this.add(lb_pwd);

this.add(lb_qrpwd);

this.add(lb_name);

this.add(lb_age);

this.add(lb_sex);

this.add(lb_phone);

this.add(lb_address);

this.add(lb_jieshao);

this.add(lb_Q);

this.add(lb_A);

JTextField_uname = new JTextField();

JPasswordField_pwd1 = new JPasswordField();

JPasswordField_pwd2 = new JPasswordField();

JTextField_name = new JTextField();


rb1 = new JRadioButton("男", true);

rb2 = new JRadioButton("女");


this.add(rb1);

this.add(rb2);


JComboBox_age = new JComboBox();

ButtonGroup bg = new ButtonGroup();

bg.add(rb1);

bg.add(rb2);

for (int i = 18; i < 60; i++) {

JComboBox_age.addItem(i);

}


this.add(JComboBox_age);


JTextField_phone = new JTextField();


address1 = new JCheckBox("中國", true);

address2 = new JCheckBox("日本");

address3 = new JCheckBox("美國");


JTextField_Q = new JTextField();

JTextField_A = new JTextField();

JTextArea_jieshao = new JTextArea();

JTextArea_jieshao.setColumns(8);

JTextArea_jieshao.setRows(4);


JTextArea_jieshao.setLineWrap(true);

this.add(JTextArea_jieshao);


JTextField_uname.setBounds(160, 100, 140, 30);

JPasswordField_pwd1.setBounds(160, 140, 140, 30);

JPasswordField_pwd2.setBounds(160, 180, 140, 30);

JTextField_name.setBounds(160, 220, 140, 30);


JComboBox_age.setBounds(160, 260, 140, 30);


rb1.setBounds(160, 300, 40, 30);

rb2.setBounds(200, 300, 40, 30);

JTextField_phone.setBounds(160, 340, 140, 30);


address1.setBounds(160, 380, 80, 30);

address2.setBounds(240, 380, 70, 30);

address3.setBounds(320, 380, 70, 30);

JTextArea_jieshao.setBounds(160, 420, 140, 40);

JTextField_Q.setBounds(160, 460, 140, 30);

JTextField_A.setBounds(160, 500, 140, 30);

this.setLocationRelativeTo(null);

this.add(JTextField_uname);

this.add(JPasswordField_pwd1);

this.add(JPasswordField_pwd2);

this.add(JTextField_name);


this.add(JTextField_phone);


this.add(JTextField_Q);

this.add(JTextField_A);

this.add(address1);

this.add(address2);

this.add(address3);

JButton_zhuce = new JButton("確認(rèn)注冊");

JButton_zhuce.addActionListener(new shijian_zhuce(this));

JButton_zhuce.setBounds(100, 580, 120, 30);

this.add(JButton_zhuce);


this.setVisible(true);

}

}




Java swing7圖書管理系統(tǒng)無注釋美化皮膚包版:含SQL部分和效果圖的評(píng)論 (共 條)

分享到微博請遵守國家法律
临澧县| 东乌| 会昌县| 阜城县| 辽源市| 银川市| 昌乐县| 北碚区| 新丰县| 黄冈市| 泸西县| 确山县| 安义县| 芜湖市| 奇台县| 吴江市| 吴桥县| 武隆县| 万年县| 遵义市| 土默特右旗| 德州市| 衡阳市| 台北市| 敖汉旗| 晋中市| 色达县| 平遥县| 永年县| 杭锦后旗| 华蓥市| 沾益县| 连山| 股票| 昌吉市| 庆元县| 池州市| 图们市| 吉木乃县| 九江县| 谷城县|