• 大小: 688KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-12
  • 语言: Java
  • 标签:

资源简介

基于sqlsever2005的医院管理系统课程设计,最终用java写了图形界面

资源截图

代码片段和文件信息

package xx;

/*
 * 功能:登录界面带着注册功能
 */
import javax.swing.*;

import java.awt.*;
import java.awt.event.*;

public class ADD extends Jframe implements ActionListener{

/**
 * 
 */
//private static final long serialVersionUID = -8406167529848641839L;
//定义登录界面的组件
JButton jb1jb2=null;
JPanel jp1jp2jp3jp4=null;
    JTextField jtfjtf1=null;
JLabel jlb1jlb2jlb3=null;
JPasswordField jpf=null;



public ADD()
{
//创建组件
 //创建组件
jb1=new JButton(“添加“);
jb2=new JButton(“退出“);
//设置监听
jb1.addActionListener(this);
jb2.addActionListener(this);

jlb1=new JLabel(“登录名:“);
jlb2=new JLabel(“密    码:“);
jlb3=new JLabel(“身份“);

jtf=new JTextField(10);
jtf1=new JTextField(10);
jpf=new JPasswordField(10);

jp1=new JPanel();
jp2=new JPanel();
jp3=new JPanel();
jp4=new JPanel();


jp1.add(jlb1);
jp1.add(jtf);

jp2.add(jlb2);
jp2.add(jpf);

jp3.add(jb1);
jp3.add(jb2);

jp4.add(jlb3);
jp4.add(jtf1);
this.add(jp1);
this.add(jp2);
this.add(jp4);
this.add(jp3);

this.setVisible(true);
this.setResizable(true);
this.settitle(“用户添加界面“);
this.setLayout(new GridLayout(41));
this.setDefaultCloseOperation(Jframe.EXIT_ON_CLOSE);
this.setBounds(500 200 300 180);


}

@Override
public void actionPerformed(ActionEvent e) {

//监听各个按钮
if(e.getActionCommand()==“退出“)
{
this.dispose();;
}else if(e.getActionCommand()==“添加“)
{
String a=jtf.getText();
String c=jtf1.getText();
String b=jpf.getPassword().toString();
SQL s=new SQL();
s.ConnectSQL();
s.TJ(abc);
this.dispose();
}
}

}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     850939  2016-06-23 17:36  14207304熊霞\14207304熊霞.wps

     文件        356  2016-06-20 15:55  14207304熊霞\XX\.classpath

     文件        378  2016-06-20 14:34  14207304熊霞\XX\.project

     文件        598  2016-06-20 14:34  14207304熊霞\XX\.settings\org.eclipse.jdt.core.prefs

     文件       2592  2016-06-23 09:24  14207304熊霞\XX\bin\xx\ADD.class

     文件       2086  2016-06-23 09:24  14207304熊霞\XX\bin\xx\BRCX.class

     文件        657  2016-06-23 09:24  14207304熊霞\XX\bin\xx\CZ$1.class

     文件        657  2016-06-23 09:24  14207304熊霞\XX\bin\xx\CZ$2.class

     文件       4723  2016-06-23 09:24  14207304熊霞\XX\bin\xx\CZ.class

     文件       2448  2016-06-23 09:24  14207304熊霞\XX\bin\xx\DELECT.class

     文件       2419  2016-06-23 09:24  14207304熊霞\XX\bin\xx\FZ.class

     文件        657  2016-06-23 09:24  14207304熊霞\XX\bin\xx\GH$1.class

     文件        657  2016-06-23 09:24  14207304熊霞\XX\bin\xx\GH$2.class

     文件       5155  2016-06-23 09:24  14207304熊霞\XX\bin\xx\GH.class

     文件       2157  2016-06-23 09:24  14207304熊霞\XX\bin\xx\GHSF.class

     文件       2297  2016-06-23 09:24  14207304熊霞\XX\bin\xx\JCSF.class

     文件        671  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$1.class

     文件        673  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$10.class

     文件        674  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$11.class

     文件        674  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$12.class

     文件        674  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$13.class

     文件        674  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$14.class

     文件        674  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$15.class

     文件        674  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$16.class

     文件        674  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$17.class

     文件        671  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$2.class

     文件        671  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$3.class

     文件        671  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$4.class

     文件        671  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$5.class

     文件        671  2016-06-23 09:24  14207304熊霞\XX\bin\xx\Main$6.class

............此处省略51个文件信息

评论

共有 条评论