溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

暗室逢燈按時(shí)

發(fā)布時(shí)間:2020-06-10 11:31:48 來源:網(wǎng)絡(luò) 閱讀:409 作者:嵌入式小生 欄目:軟件技術(shù)
import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.Vector;
import javax.swing.*;
import javax.swing.table.DefaultTableModel;
//窗體的布局管理器:邊界、網(wǎng)格、
//表格  表格模型  集合類 連接數(shù)據(jù)庫(kù)
//實(shí)際存儲(chǔ)數(shù)據(jù)的是表格模型
public class W extends JFrame implements ActionListener {
 //參數(shù)屬性
 JButton an1;
 JLabel bq;
 JTextField wbk;
 JPanel mb;//面板組建:容器,放組件,默認(rèn)的布局管理器是:流式布局
 JTable  bg;
 JScrollPane gd;
 Vector jilu,ziduan;
 Connection con;//連接數(shù)據(jù)庫(kù)
 PreparedStatement ps;//執(zhí)行SQl語句
 ResultSet rs;//用來存放結(jié)果集的
 DefaultTableModel bgmx;
 public W(){
  //北部
  an1=new JButton("查詢");
  an1.addActionListener(this);
  bq=new JLabel("請(qǐng)輸入用戶名:");
  wbk=new JTextField(10);
  mb=new JPanel();
  mb.add(bq);mb.add(wbk);mb.add(an1);
  
  this.add(mb,BorderLayout.NORTH);
  //中部
  ziduan=new Vector();
  ziduan.add("學(xué)號(hào)");ziduan.add("姓名");ziduan.add("性別");
  ziduan.add("年齡");ziduan.add("籍貫");ziduan.add("院系名稱");
  jilu=new Vector();
  //連接數(shù)據(jù)庫(kù)
  try{
   Class.forName("com.mysql.jdbc.Driver");//加載驅(qū)動(dòng)
   String url="jdbc:mysql://localhost:3306/student";
   String user="root";
   String password="000000";
   con=DriverManager.getConnection(url, user, password);
   if(con!=null){
    System.out.println("數(shù)據(jù)庫(kù)連接成功");
   }
   ps=con.prepareStatement("delete from c where xuehao='xs002'");
   ps.executeUpdate();
   ps=con.prepareStatement("select * from c");
   rs=ps.executeQuery();
   while(rs.next()){
    Vector hang=new Vector();
    hang.add(rs.getString(1));
    hang.add(rs.getString(2));
    hang.add(rs.getString(3));
    hang.add(rs.getInt(4));
    hang.add(rs.getString(5));
    hang.add(rs.getString(6));
    jilu.add(hang);
   }
  }catch(Exception e){}finally{
   try{
    if(rs!=null){rs.close();}
    if(ps!=null){ps.close();}
    if(con!=null){con.close();}
   }catch(Exception e){}
  }
  bgmx=new DefaultTableModel(jilu,ziduan);
  bg=new JTable(bgmx);
  gd=new JScrollPane(bg);
  this.add(gd);
  this.setTitle("這是一個(gè)窗體");
  this.setSize(350,350);
  this.setVisible(true);
  this.setDefaultCloseOperation(EXIT_ON_CLOSE);
 }
 public static void main(String[] args){
  new W();
 }
 @Override
 public void actionPerformed(ActionEvent e) {
  // TODO Auto-generated method stub
  if(e.getSource()==an1){
   JOptionPane.showConfirmDialog(this, "確定要關(guān)閉馬?");
  }
 }
}


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI