电信IP资费管理系统代码
文理学院java课
4管理员列表
import java.awt.*;
import java.awt.event.*; import javax.swing.*; import java.sql.*;
public class 管理员列表 extends JPanel implements ActionListener{ private JButton button[]=new JButton[3]; private JTable table1; public 管理员列表(){ JPanel p1=new JPanel(new BorderLayout()); p1.add(new JLabel(\管理员列表\ Connection con; ResultSet rs; Statement sql; try{ Class.forName(\ } catch (ClassNotFoundException ex){ System.out.println(\ } try{ con=DriverManager.getConnection(\电信IP资费管理系统\ sql=con.createStatement(1005,1007); rs=sql.executeQuery(\ rs.last(); int k=rs.getRow(); if(k==0){ JOptionPane.showMessageDialog(this,\您查询的表为空表!\系统提示\ } rs.beforeFirst(); Object obj[][]=new Object[k][6]; for(int i=0;i 专业资料 obj[i][4]=rs.getString(\ obj[i][5]=rs.getString(\ } JPanel p2=new JPanel(); String s1[]={\帐号\姓名\开户日期\权限\ table1=new JTable(obj,s1); table1.setSize(500,500); JScrollPane jsp1=new JScrollPane(table1); jsp1.setPreferredSize(new Dimension(table1.getWidth(),table1.getHeight())); p2.add(jsp1); p1.add(p2,\ con.close(); } catch(SQLException se){ System.out.println(\ } JPanel p3=new JPanel(new FlowLayout()); p1.add(p3,\ String s2[]={\删除\修改\清除\ for(int i=0;i 5开通账户 import java.awt.*; import java.awt.event.*; import javax.swing.*; 专业资料 import java.sql.*; public class 开通账户 extends JPanel implements ActionListener, ItemListener { private JButton 提交, 重设; private JTextField 账务账号, 账务密码, 重复密码, 用户名称, 性别选项, 用户状态, 电子, 联系, 公司, 公司, 邮政编码; private JRadioButton 男, 女, 开通, 暂停; private JComboBox 付款式, 省份, 职业; private String st1, st2, st3; public 开通账户() { JPanel p1 = new JPanel(); p1.setLayout(new BorderLayout()); JPanel p2 = new JPanel(); p1.add(p2, \ JLabel tishi = new JLabel(\请输入用户信息,带*的必须填写!\ p2.add(tishi, JLabel.CENTER); tishi.setFont(new Font(\华文行楷\ tishi.setForeground(Color.RED); JPanel p3 = new JPanel(); p1.add(p3, \ 提交 = new JButton(\提交\ p3.add(提交); 提交.addActionListener(this); 重设 = new JButton(\重设\ p3.add(重设); 重设.addActionListener(this); JPanel p4 = new JPanel(new GridLayout(15, 3)); p1.add(p4, \ p4.add(new JLabel(\账务账号*\ 账务账号 = new JTextField(); p4.add(账务账号); p4.add(new JLabel(\请输入用户的账务账号名称\ p4.add(new JLabel(\账务密码*\ 账务密码 = new JTextField(); p4.add(账务密码); p4.add(new JLabel(\请输入用户的账务密码\ p4.add(new JLabel(\重复密码*\ 重复密码 = new JTextField(); 专业资料 p4.add(重复密码); p4.add(new JLabel(\请重复以上密码\ p4.add(new JLabel(\用户名称*\用户名称 = new JTextField(); p4.add(用户名称); p4.add(new JLabel(\请输入用户的真实姓名\ p4.add(new JLabel(\性别选项\ JPanel p5 = new JPanel(new GridLayout(1, 2)); p4.add(p5); ButtonGroup bg1 = new ButtonGroup(); 男 = new JRadioButton(\男\bg1.add(男); p5.add(男); 女 = new JRadioButton(\女\bg1.add(女); p5.add(女); p4.add(new JLabel()); p4.add(new JLabel(\付款式*\ Object[] fangshi = {\现金支付\银行转账\邮政汇款\其它\付款式 = new JComboBox(fangshi); p4.add(付款式); 付款式.addItemListener(this); p4.add(new JLabel()); p4.add(new JLabel(\用户状态*\ JPanel p6 = new JPanel(new GridLayout(1, 2)); p4.add(p6); ButtonGroup gp2 = new ButtonGroup(); 开通 = new JRadioButton(\开通\gp2.add(开通); p6.add(开通); 暂停 = new JRadioButton(\暂停\gp2.add(暂停); p6.add(暂停); p4.add(new JLabel()); p4.add(new JLabel(\电子*\电子 = new JTextField(\p4.add(电子); 专业资料 p4.add(new JLabel(\请输入正确的电子信息\ p4.add(new JLabel(\省份\ Object[] shengfen = {\北京\上海\天津\ 省份 = new JComboBox(shengfen); p4.add(省份); 省份.addItemListener(this); p4.add(new JLabel()); p4.add(new JLabel(\职业\ Object[] zhiye = {\软件工程师\部门经理\销售经理\业务经理\ 职业 = new JComboBox(zhiye); p4.add(职业); 职业.addItemListener(this); p4.add(new JLabel()); p4.add(new JLabel(\联系\ 联系 = new JTextField(); p4.add(联系); p4.add(new JLabel(\请输入联系\ p4.add(new JLabel(\公司\ 公司 = new JTextField(); p4.add(公司); p4.add(new JLabel(\请输入用户所在单位信息\ p4.add(new JLabel(\公司\ 公司 = new JTextField(); p4.add(公司); p4.add(new JLabel(\请输入用户所在单位\ p4.add(new JLabel(\邮政编码\ 邮政编码 = new JTextField(); p4.add(邮政编码); p4.add(new JLabel(\请输入用户邮政编码\ this.add(p1); this.setVisible(true); } public void itemStateChanged(ItemEvent f) { if(付款式.getSelectedIndex() == 0) st1 = \现金支付\ if(付款式.getSelectedIndex() == 1) 专业资料