首页>代码>java swing GUI开发银行报号系统>/Bank/src/com/ucai/admin/db_longin.java
package com.ucai.admin;

import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import java.awt.Color;
import java.awt.Font;
import java.awt.HeadlessException;
import java.awt.SystemColor;
import java.sql.SQLException;

import javax.swing.JTextField;
import javax.swing.SwingConstants;
import javax.swing.JButton;
import javax.swing.UIManager;
import javax.swing.JPanel;
import javax.swing.border.BevelBorder;

import com.ucai.dbcp.JDBCTemplate;
import com.ucai.jdbc.BankJdbc;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;

public class db_longin {

	JFrame frame;
	private JTextField t1;
	private JTextField t2;
	private JTextField t3;
	private JTextField t4;

	/**
	 * Launch the application.
	 */

	/**
	 * Create the application.
	 * @throws SQLException 
	 */
	public db_longin() throws SQLException {
		initialize();
	}

	/**
	 * Initialize the contents of the frame.
	 * @throws SQLException 
	 */
	private void initialize() throws SQLException {
		frame = new JFrame();
		frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
		frame.getContentPane().setBackground(UIManager.getColor("CheckBox.light"));
		frame.setBounds(100, 100, 389, 453);
		frame.getContentPane().setLayout(null);
		
		JLabel jl2 = new JLabel("工号");
		jl2.setHorizontalAlignment(SwingConstants.CENTER);
		jl2.setBackground(Color.GRAY);
		jl2.setFont(new Font("仿宋", Font.BOLD, 18));
		jl2.setBounds(28, 196, 65, 38);
		frame.getContentPane().add(jl2);
		
		JScrollPane jp ;
		jp=BankJdbc.tabel3();
		jp.setBounds(28, 13, 330, 100);
		frame.getContentPane().add(jp);
		
		t1 = new JTextField();
		t1.setBounds(28, 247, 65, 40);
		frame.getContentPane().add(t1);
		t1.setColumns(10);
		
		t2 = new JTextField();
		t2.setBounds(107, 247, 62, 40);
		frame.getContentPane().add(t2);
		t2.setColumns(10);
		
		t3 = new JTextField();
		t3.setBounds(180, 247, 65, 40);
		frame.getContentPane().add(t3);
		t3.setColumns(10);
		
		t4 = new JTextField();
		t4.setBounds(262, 247, 86, 40);
		frame.getContentPane().add(t4);
		t4.setColumns(10);
		
		JLabel jl3 = new JLabel("姓名");
		jl3.setHorizontalAlignment(SwingConstants.CENTER);
		jl3.setFont(new Font("仿宋", Font.BOLD, 18));
		jl3.setBackground(Color.GRAY);
		jl3.setBounds(107, 196, 65, 38);
		frame.getContentPane().add(jl3);
		
		JLabel jl4 = new JLabel("密码");
		jl4.setHorizontalAlignment(SwingConstants.CENTER);
		jl4.setFont(new Font("仿宋", Font.BOLD, 18));
		jl4.setBackground(Color.GRAY);
		jl4.setBounds(180, 196, 65, 38);
		frame.getContentPane().add(jl4);
		
		JLabel jl5 = new JLabel("业务类型");
		jl5.setHorizontalAlignment(SwingConstants.CENTER);
		jl5.setFont(new Font("仿宋", Font.BOLD, 18));
		jl5.setBackground(Color.GRAY);
		jl5.setBounds(262, 196, 86, 38);
		frame.getContentPane().add(jl5);
		
		JButton jb1 = new JButton("主菜单");
		jb1.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				new AdminUI();
				frame.dispose();
			}
		});
		jb1.setBackground(UIManager.getColor("Button.disabledForeground"));
		jb1.setFont(new Font("微软雅黑", Font.BOLD, 16));
		jb1.setBounds(12, 344, 91, 49);
		frame.getContentPane().add(jb1);
		
		JButton jb2 = new JButton("删 除");
		jb2.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				if(t1.getText().equals("")){
					JOptionPane.showMessageDialog(frame, "请输入工号进行删除");
				}else{
						try {
							if(BankJdbc.delete(t1.getText())){
								JOptionPane.showMessageDialog(frame, "删除成功");
							}else{
								JOptionPane.showMessageDialog(frame, "删除失败");
							}
						} catch (HeadlessException | SQLException e1) {
							e1.printStackTrace();
					}
				}
			}
		});
		jb2.setFont(new Font("微软雅黑", Font.BOLD, 16));
		jb2.setBounds(118, 344, 71, 49);
		frame.getContentPane().add(jb2);
		
		JButton jb3 = new JButton("添 加");
		jb3.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {

				
			}
		});
		jb3.setFont(new Font("微软雅黑", Font.BOLD, 16));
		jb3.setBounds(203, 344, 71, 49);
		frame.getContentPane().add(jb3);
		
		JButton jb4 = new JButton("刷 新");
		jb4.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
		
			}
		});
		jb4.setFont(new Font("微软雅黑", Font.BOLD, 16));
		jb4.setBounds(288, 344, 71, 49);
		frame.getContentPane().add(jb4);
		
		JPanel panel = new JPanel();
		panel.setBorder(new BevelBorder(BevelBorder.LOWERED, null, null, null, null));
		panel.setBackground(UIManager.getColor("Button.shadow"));
		panel.setBounds(14, 144, 347, 177);
		panel.setBorder(BorderFactory.createTitledBorder("修改员工信息")); 
		frame.getContentPane().add(panel);
	}
}
最近下载更多
caomin  LV4 2023年5月25日
香菇肉饼汤  LV8 2023年4月13日
wangzitao  LV11 2022年2月24日
17798830  LV14 2022年1月25日
一头土猪  LV7 2021年12月22日
孙纪龙啊  LV10 2021年12月8日
sssswwwwdddd  LV1 2021年11月22日
YY杆杆  LV1 2021年7月21日
张鑫平  LV1 2021年7月3日
wanglinddad  LV55 2021年6月27日
最近浏览更多
1769879600 9月21日
暂无贡献等级
zvcbnlk  LV2 9月16日
lishizhen666 7月12日
暂无贡献等级
qqqww11  LV2 6月26日
hfffff  LV1 6月3日
akittyboy  LV9 3月22日
1049066887  LV13 3月3日
1134116035 2月28日
暂无贡献等级
fff2003  LV9 1月11日
求学的熊猫  LV11 2023年12月25日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友