ArtAcn.java~3~
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:6k
源码类别:

Java编程

开发平台:

Java

  1. package infomanagement;
  2. import java.awt.*;
  3. import javax.swing.*;
  4. import com.borland.jbcl.layout.*;
  5. import java.awt.event.*;
  6. import com.borland.dx.sql.dataset.*;
  7. import java.sql.* ;
  8. /**
  9.  * <p>Title: </p>
  10.  * <p>Description: </p>
  11.  * <p>Copyright: Copyright (c) 2003</p>
  12.  * <p>Company: </p>
  13.  * @author unascribed
  14.  * @version 1.0
  15.  */
  16. public class ArtAcn extends JDialog {
  17.   private JPanel jPanel1 = new JPanel();
  18.   private XYLayout xYLayout1 = new XYLayout();
  19.   private JLabel jLabel1 = new JLabel();
  20.   private JLabel jLabel2 = new JLabel();
  21.   private JLabel jLabel3 = new JLabel();
  22.   private JTextField jTextField1 = new JTextField();
  23.   private JLabel jLabel4 = new JLabel();
  24.   private JTextField jTextField2 = new JTextField();
  25.   private JLabel jLabel5 = new JLabel();
  26.   private JTextField jTextField3 = new JTextField();
  27.   private JLabel jLabel6 = new JLabel();
  28.   private JTextField jTextField4 = new JTextField();
  29.   private JLabel jLabel7 = new JLabel();
  30.   private JTextField jTextField5 = new JTextField();
  31.   private JLabel jLabel8 = new JLabel();
  32.   private JButton jButton1 = new JButton();
  33.   private JButton jButton2 = new JButton();
  34.   private Database database1 = new Database();
  35.   public ArtAcn(Frame frame, String title, boolean modal) {
  36.     super(frame, title, modal);
  37.     try {
  38.       jbInit();
  39.       pack();
  40.     }
  41.     catch(Exception ex) {
  42.       ex.printStackTrace();
  43.     }
  44.   }
  45.   public ArtAcn() {
  46.     this(null, "", false);
  47.   }
  48.   private void jbInit() throws Exception {
  49.     jPanel1.setLayout(xYLayout1);
  50.     jLabel1.setForeground(Color.red);
  51.     jLabel1.setBorder(BorderFactory.createEtchedBorder());
  52.     jLabel1.setText("          文科科成绩录入");
  53.     jLabel2.setBorder(BorderFactory.createEtchedBorder());
  54.     jLabel3.setForeground(Color.red);
  55.     jLabel3.setText("     数学");
  56.     jLabel4.setForeground(Color.red);
  57.     jLabel4.setText("     英语");
  58.     jLabel5.setForeground(Color.red);
  59.     jLabel5.setText("     语文");
  60.     jLabel6.setForeground(Color.red);
  61.     jLabel6.setText("     政治");
  62.     jLabel7.setForeground(Color.red);
  63.     jLabel7.setText("     历史");
  64.     jLabel8.setBorder(BorderFactory.createEtchedBorder());
  65.     jButton1.setText("确定");
  66.     jButton1.addActionListener(new java.awt.event.ActionListener() {
  67.       public void actionPerformed(ActionEvent e) {
  68.         jButton1_actionPerformed(e);
  69.       }
  70.     });
  71.     jButton2.setText("取消");
  72.     database1.setConnection(new com.borland.dx.sql.dataset.ConnectionDescriptor("jdbc:odbc:local", "sa", "", false, "sun.jdbc.odbc.JdbcOdbcDriver"));
  73.     this.getContentPane().add(jPanel1, BorderLayout.CENTER);
  74.     jPanel1.add(jLabel1,       new XYConstraints(0, 1, 400, 26));
  75.     jPanel1.add(jLabel3,  new XYConstraints(20, 45, 90, 20));
  76.     jPanel1.add(jTextField1,    new XYConstraints(140, 45, 120, 20));
  77.     jPanel1.add(jLabel4,   new XYConstraints(20, 90, 90, 20));
  78.     jPanel1.add(jTextField2,   new XYConstraints(140, 90, 120, 20));
  79.     jPanel1.add(jLabel5,    new XYConstraints(20, 135, 90, 20));
  80.     jPanel1.add(jTextField3,    new XYConstraints(140, 135, 120, 20));
  81.     jPanel1.add(jLabel6,   new XYConstraints(20, 180, 90, 20));
  82.     jPanel1.add(jTextField4,   new XYConstraints(140, 180, 120, 20));
  83.     jPanel1.add(jLabel7,   new XYConstraints(20, 225, 90, 20));
  84.     jPanel1.add(jTextField5,      new XYConstraints(140, 225, 120, 20));
  85.     jPanel1.add(jLabel2, new XYConstraints(1, 26, 399, 275));
  86.     jPanel1.add(jLabel8,    new XYConstraints(1, 255, 397, 44));
  87.     jPanel1.add(jButton1,        new XYConstraints(200, 265, 90, 30));
  88.     jPanel1.add(jButton2,      new XYConstraints(300, 265, 90, 30));
  89.   }
  90.   public int Math(){
  91.     return Integer.parseInt(jTextField1.getText().trim()) ;
  92.   }
  93.   public int English(){
  94.    return Integer.parseInt(jTextField2.getText().trim()) ;
  95.   }
  96.   public int Chinese(){
  97.     return Integer.parseInt(jTextField3.getText().trim()) ;
  98.   }
  99.   public int Polity(){
  100.     return Integer.parseInt(jTextField4.getText().trim()) ;
  101.   }
  102.   public int History(){
  103.     return Integer.parseInt(jTextField5.getText().trim()) ;
  104.   }
  105.   void cancel(){
  106.     dispose() ;
  107.   }
  108.   void jButton1_actionPerformed(ActionEvent e) {
  109.     ScienceAchievement scienceAchievement = new ScienceAchievement() ;
  110.     int cardID = scienceAchievement.cardID() ;
  111.     String studentName = scienceAchievement.studentName() ;
  112.     String studentBefore = scienceAchievement.studentBefore() ;
  113.     int Math = Math() ;
  114.     int English = English() ;
  115.     int Chinese = Chinese() ;
  116.     int Polity = Polity() ;
  117.     int History = History() ;
  118.     int MathID = 1 ;
  119.     int EnglishID = 2 ;
  120.     int ChineseID = 3 ;
  121.     int PolityID = 4 ;
  122.     int HistoryID = 5 ;
  123.     String MathName = "数学" ;
  124.     String EnglishName = "英语" ;
  125.     String ChineseName = "语文" ;
  126.     String PolityName = "政治" ;
  127.     String HistoryName = "化学" ;
  128.     Statement sql = database1.createStatement() ;
  129.     String stmt = "INSERT INTO [info].[dbo].[science](cardID,studentName,studentBefore)"+
  130.                  "VALUES('"+cardID+"', '"+studentName+"' , '"+studentBefore+"')" ;
  131.     String stmt1 = "INSERT INTO [info].[dbo].[science2](cardID,subjectID,subject,achievement)"+
  132.                   "VALUES('"+cardID+"','"+MathID+"','"+MathName+"','"+Math+"')" ;
  133.     String stmt2 = "INSERT INTO [info].[dbo].[science2](cardID,subjectID,subject,achievement)"+
  134.                    "VALUES('"+cardID+"','"+EnglishID+"','"+EnglishName+"','"+English+"')" ;
  135.     String stmt3 = "INSERT INTO [info].[dbo].[science2](cardID,subjectID,subject,achievement)" +
  136.                    "VALUES('"+cardID+"','"+ChineseID+"','"+ChineseName+"','"+Chinese+"')" ;
  137.     String stmt4 = "INSERT INTO [info].[dbo].[science2](cardID,subjectID,subject,achievement)" +
  138.                    "VALUES('"+cardID+"','"+PolityID+"','"+PolityName+"','"+Polity+"')" ;
  139.     String stmt5 = "INSERT INTO [info].[dbo].[science2](cardID,subjectID,subject,achievement)" +
  140.                    "VALUES('"+cardID+"','"+HistoryID+"','"+HistoryName+"','"+History+"')" ;
  141.     try{
  142.       sql.executeUpdate(stmt) ;
  143.       sql.executeUpdate(stmt1) ;
  144.       sql.executeUpdate(stmt2) ;
  145.       sql.executeUpdate(stmt3) ;
  146.       sql.executeUpdate(stmt4) ;
  147.       sql.executeUpdate(stmt5) ;
  148.     }
  149.     catch(Exception www){}
  150.   }
  151. }