⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addpanel.java

📁 java私塾里的图书进销存项目的源代码,非常不错,J2SE基础知识复习非常有帮助!
💻 JAVA
字号:
package cn.javass.bookmgr.user.ui.panels;

import java.awt.*;
import com.borland.jbcl.layout.*;
import javax.swing.*;
import java.awt.event.*;
import cn.javass.bookmgr.util.uiutil.ChangePanel;
import cn.javass.bookmgr.MainFrame;
import cn.javass.bookmgr.user.business.factory.UserFactory;
import cn.javass.bookmgr.user.valueobject.UserModel;
/**
 * 用户模块表现层用于用户新增的Panel
 *
 * <p>Title: Java私塾第一个Java项目——图书进销存系统(单机版)</p>
 * <p>Description: 网址:<a href="http://www.javass.cn">http://www.javass.cn</a>
 * 新电话:010-86835215   新地址:北京市海淀区厂洼路5号院深博达商务楼5层</p>
 * <p>Copyright: Copyright (c) 2008</p>
 * <p>Company: Java私塾</p>
 * @author Java私塾
 * @version 1.0
 */
public class AddPanel extends JPanel {
  //以下为本界面需要的组件定义

  XYLayout xYLayout1 = new XYLayout();
  JLabel jLabel1 = new JLabel();
  JLabel jLabel2 = new JLabel();
  JLabel jLabel3 = new JLabel();
  JLabel jLabel4 = new JLabel();
  JLabel jLabel5 = new JLabel();
  JLabel jLabel6 = new JLabel();
  JTextField txt_userId = new JTextField();
  JTextField txt_name = new JTextField();
  JComboBox cmb_type = new JComboBox();
  JPasswordField pwd_pwd = new JPasswordField();
  JPasswordField pwd_secondpwd = new JPasswordField();
  JButton btn_add = new JButton();
  JButton btn_back = new JButton();

  /**
   * 用来保持对主窗体的引用
   */
  MainFrame mf = null;

  /**
   * 构建用户新增的Panel
   * @param mf 主窗体的引用
   */
  public AddPanel(MainFrame mf) {
    try {
      this.mf = mf;
      jbInit();
    }
    catch(Exception ex) {
      ex.printStackTrace();
    }
  }
  /**
   * 真正进行组件初始化,并构建整个界面
   * @throws Exception
   */
  void jbInit() throws Exception {
    jLabel1.setFont(new java.awt.Font("Dialog", 1, 30));
    //为用户类型的下拉列表设置初始值
    this.cmb_type.addItem(UserModel.TYPE_1);
    this.cmb_type.addItem(UserModel.TYPE_2);
    this.cmb_type.addItem(UserModel.TYPE_3);
    this.cmb_type.addItem(UserModel.TYPE_4);
    this.cmb_type.addItem(UserModel.TYPE_5);
    this.cmb_type.addItem(UserModel.TYPE_6);

    jLabel1.setText("注册用户");
    this.setLayout(xYLayout1);
    jLabel2.setText("用户编号");
    jLabel3.setText("用户姓名");
    jLabel4.setText("用户类型");
    jLabel5.setText("用户密码");
    jLabel6.setText("确认密码");

    txt_userId.setText("");
    txt_name.setText("");
    pwd_secondpwd.setText("");
    pwd_pwd.setText("");
    btn_add.setText("保存");
    btn_add.addActionListener(new AddPanel_btn_add_actionAdapter(this));
    btn_back.setText("返回");
    btn_back.addActionListener(new AddPanel_btn_back_actionAdapter(this));
    this.add(jLabel1, new XYConstraints(96, 12, 377, 82));
    this.add(jLabel2,   new XYConstraints(13, 91, 77, 30));
    this.add(jLabel3,    new XYConstraints(238, 90, 77, 30));
    this.add(jLabel4,     new XYConstraints(13, 165, 77, 30));
    this.add(jLabel5,     new XYConstraints(238, 168, 77, 30));
    this.add(jLabel6,     new XYConstraints(13, 233, 77, 30));
    this.add(txt_userId,  new XYConstraints(63, 93, 166, 33));
    this.add(txt_name,    new XYConstraints(295, 93, 166, 33));
    this.add(cmb_type,    new XYConstraints(63, 163, 166, 33));
    this.add(pwd_pwd,   new XYConstraints(295, 167, 166, 33));
    this.add(pwd_secondpwd,    new XYConstraints(63, 239, 166, 33));
    this.add(btn_add, new XYConstraints(142, 343, 117, 46));
    this.add(btn_back,     new XYConstraints(307, 343, 117, 46));
  }
  /**
   * 点击新增按钮的事件处理
   * @param e Action事件对象
   */
  void btn_add_actionPerformed(ActionEvent e) {
    //1:收集参数
    String id = this.txt_userId.getText();
    String name = this.txt_name.getText();
    String type = (String)this.cmb_type.getSelectedItem();
    String pwd = new String(this.pwd_pwd.getPassword());
    String secondPwd = new String(this.pwd_secondpwd.getPassword());

    //1.1 检测数据
    if(pwd==null || pwd.trim().length()==0 || secondPwd==null || secondPwd.trim().length()==0
       || !pwd.trim().equals(secondPwd.trim())
       ){
      JOptionPane.showMessageDialog(null,"密码不能为空,而且两次输入的密码必须一致");
      return;
    }
    //2:组织参数
    UserModel um = new UserModel();
    um.setId(id);
    um.setName(name);
    um.setPwd(pwd);
    um.setType(um.typeStringToInt(type));
    //3:调用逻辑层Api,并获取返回值
    boolean flag = UserFactory.getInstance().createUserEbi().registUser(um);
    //4:根据返回值选择新的Panel
    if(flag){
      ChangePanel.changePanel(mf,new ListPanel(mf,false,null));
    }else{
      JOptionPane.showMessageDialog(null,"很遗憾,注册失败了");
    }
  }
  /**
   * 点击返回按钮的事件处理
   * @param e Action事件对象
   */
  void btn_back_actionPerformed(ActionEvent e) {
    ChangePanel.changePanel(mf,new ListPanel(mf,false,null));
  }
}
//以下为事件处理中的Adaper类
class AddPanel_btn_add_actionAdapter implements java.awt.event.ActionListener {
  AddPanel adaptee;

  AddPanel_btn_add_actionAdapter(AddPanel adaptee) {
    this.adaptee = adaptee;
  }
  public void actionPerformed(ActionEvent e) {
    adaptee.btn_add_actionPerformed(e);
  }
}

class AddPanel_btn_back_actionAdapter implements java.awt.event.ActionListener {
  AddPanel adaptee;

  AddPanel_btn_back_actionAdapter(AddPanel adaptee) {
    this.adaptee = adaptee;
  }
  public void actionPerformed(ActionEvent e) {
    adaptee.btn_back_actionPerformed(e);
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -