成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

java連接mysql數(shù)據(jù)庫并顯示

本文主要給大家簡單講講java連接MySQL數(shù)據(jù)庫并顯示,相關(guān)專業(yè)術(shù)語大家可以上網(wǎng)查查或者找一些相關(guān)書籍補(bǔ)充一下,這里就不涉獵了,我們就直奔主題吧,希望java連接mysql數(shù)據(jù)庫并顯示這篇文章可以給大家?guī)硪恍嶋H幫助。

創(chuàng)新新互聯(lián),憑借10余年的網(wǎng)站設(shè)計制作、成都網(wǎng)站設(shè)計經(jīng)驗,本著真心·誠心服務(wù)的企業(yè)理念服務(wù)于成都中小企業(yè)設(shè)計網(wǎng)站有上千余家案例。做網(wǎng)站建設(shè),選創(chuàng)新互聯(lián)建站。

用java的swing組件畫出表格,實現(xiàn)“增加”、“刪除”、“保存”、“退出”的功能,并且與mysql數(shù)據(jù)庫相連接。

可以實現(xiàn)提取數(shù)據(jù)庫中表的數(shù)據(jù)顯示到含有表格的窗體上,也可以將在表格中修改的內(nèi)容寫入數(shù)據(jù)庫表中。

java連接mysql數(shù)據(jù)庫并顯示

我實現(xiàn)以上功能時用了兩個類,其中一個類是MyFrame,另外一個類是PutinStorage。

具體代碼如下(以下代碼均為完整代碼,經(jīng)測試成功的):

PutinStorage類:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.util.Vector;
 
import javax.swing.JOptionPane;
 
public class PutinStorage {
	// 得到數(shù)據(jù)庫表數(shù)據(jù)
	public static Vector getRows(){
		String sql_url = "jdbc:mysql://localhost:3306/haha";	//數(shù)據(jù)庫路徑(一般都是這樣寫),test是數(shù)據(jù)庫名稱
		String name = "root";		//用戶名
		String password = "123456";	//密碼
		Connection conn;
		PreparedStatement preparedStatement = null;
 
		Vector rows = null;
		Vector columnHeads = null;
		
		try {
			Class.forName("com.mysql.jdbc.Driver");		//連接驅(qū)動
			conn = DriverManager.getConnection(sql_url, name, password);	//連接數(shù)據(jù)庫
//			if(!conn.isClosed())
//				System.out.println("成功連接數(shù)據(jù)庫");
			preparedStatement = conn.prepareStatement("select * from aa");
			ResultSet result1 = preparedStatement.executeQuery();
			
			if(result1.wasNull())
				JOptionPane.showMessageDialog(null, "結(jié)果集中無記錄");
			
			rows = new Vector();
			
			ResultSetMetaData rsmd = result1.getMetaData();
					
			while(result1.next()){
				rows.addElement(getNextRow(result1,rsmd));
			}
			
		} catch (ClassNotFoundException e) {
			// TODO Auto-generated catch block
			System.out.println("未成功加載驅(qū)動。");
			e.printStackTrace();
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			System.out.println("未成功打開數(shù)據(jù)庫。");
			e.printStackTrace();
		}
		return rows;
	}
	
	// 得到數(shù)據(jù)庫表頭
	public static Vector getHead(){
		String sql_url = "jdbc:mysql://localhost:3306/haha";	//數(shù)據(jù)庫路徑(一般都是這樣寫),test是數(shù)據(jù)庫名稱
		String name = "root";		//用戶名
		String password = "123456";	//密碼
		Connection conn;
		PreparedStatement preparedStatement = null;
 
		Vector columnHeads = null;
		
		try {
			Class.forName("com.mysql.jdbc.Driver");		//連接驅(qū)動
			conn = DriverManager.getConnection(sql_url, name, password);	//連接數(shù)據(jù)庫
//			if(!conn.isClosed())
//				System.out.println("成功連接數(shù)據(jù)庫");
			preparedStatement = conn.prepareStatement("select * from aa");
			ResultSet result1 = preparedStatement.executeQuery();
			
			boolean moreRecords = result1.next();
			if(!moreRecords)
				JOptionPane.showMessageDialog(null, "結(jié)果集中無記錄");
			
			columnHeads = new Vector();
			ResultSetMetaData rsmd = result1.getMetaData();
			for(int i = 1; i <= rsmd.getColumnCount(); i++)
				columnHeads.addElement(rsmd.getColumnName(i));
			
		} catch (ClassNotFoundException e) {
			// TODO Auto-generated catch block
			System.out.println("未成功加載驅(qū)動。");
			e.printStackTrace();
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			System.out.println("未成功打開數(shù)據(jù)庫。");
			e.printStackTrace();
		}
		return columnHeads;
	}
	
	// 得到數(shù)據(jù)庫中下一行數(shù)據(jù)
	private static Vector getNextRow(ResultSet rs,ResultSetMetaData rsmd) throws SQLException{
		Vector currentRow = new Vector();
		for(int i = 1; i <= rsmd.getColumnCount(); i++){
			currentRow.addElement(rs.getString(i));
		}
		return currentRow;
	}
	
	/*//主函數(shù)
	public static void main(String[] args){
		getRows();
	}*/
}

MyFrame類:

import java.awt.BorderLayout;
import java.awt.FlowLayout;
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.SQLException;
import java.util.Vector;
 
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.DefaultTableModel;
 
import per.tushu.storage.PutinStorage;
 
public class MyFrame extends JFrame{
	
	DefaultTableModel tableModel;		// 默認(rèn)顯示的表格
	JButton add,del,exit,save;		// 各處理按鈕
	JTable table;		// 表格
	
	JPanel panelUP;	//增加信息的面板
	
	// 構(gòu)造函數(shù)
	public MyFrame(){
		this.setBounds(300, 200, 600, 450);		// 設(shè)置窗體大小
		this.setTitle("測試");		// 設(shè)置窗體名稱
		this.setLayout(new BorderLayout());	// 設(shè)置窗體的布局方式
				
		// 新建各按鈕組件
		add = new JButton("增加");
		del = new JButton("刪除");
		save = new JButton("保存");
		exit = new JButton("退出");
		
		panelUP = new JPanel();		// 新建按鈕組件面板
		panelUP.setLayout(new FlowLayout(FlowLayout.LEFT));	// 設(shè)置面板的布局方式
		
		// 將各按鈕組件依次添加到面板中
		panelUP.add(add);
		panelUP.add(del);
		panelUP.add(save);
		panelUP.add(exit);
		
		// 取得haha數(shù)據(jù)庫的aa表的各行數(shù)據(jù)
		Vector rowData = PutinStorage.getRows();
		// 取得haha數(shù)據(jù)庫的aa表的表頭數(shù)據(jù)
		Vector columnNames = PutinStorage.getHead();
		
		
		// 新建表格
		tableModel = new DefaultTableModel(rowData,columnNames);	
		table = new JTable(tableModel);
		
		JScrollPane s = new JScrollPane(table);
		
		// 將面板和表格分別添加到窗體中
		this.add(panelUP,BorderLayout.NORTH);
		this.add(s);
		
		// 事件處理
		MyEvent();
		
		this.setVisible(true);		// 顯示窗體
		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);		 // 設(shè)置窗體可關(guān)閉
	}
	
	// 事件處理
	public void MyEvent(){
		
		// 增加
		add.addActionListener(new ActionListener(){
 
			@Override
			public void actionPerformed(ActionEvent arg0) {
				// 增加一行空白區(qū)域
				tableModel.addRow(new Vector());
			}
			
		});
		
		// 刪除
		del.addActionListener(new ActionListener(){
 
			@Override
			public void actionPerformed(ActionEvent arg0) {
				// TODO Auto-generated method stub
				// 刪除指定行
				int rowcount = table.getSelectedRow();
				if(rowcount >= 0){
					tableModel.removeRow(rowcount);
				}
			}
			
		});
		
		/**
		* 保存
		* 我的解決辦法是直接將aa表中的全部數(shù)據(jù)刪除,
		* 將表格中的所有內(nèi)容獲取到,
		* 然后將表格數(shù)據(jù)重新寫入aa表
		*/
		save.addActionListener(new ActionListener(){
 
			@Override
			public void actionPerformed(ActionEvent e) {	
				int column = table.getColumnCount();		// 表格列數(shù)
				int row = table.getRowCount();		// 表格行數(shù)
				
				// value數(shù)組存放表格中的所有數(shù)據(jù)
				String[][] value = new String[row][column];
				
				for(int i = 0; i < row; i++){
					for(int j = 0; j < column; j++){
						value[i][j] = table.getValueAt(i, j).toString();
					}
				}
				
				// 以下均為對數(shù)據(jù)庫的操作
				String sql_url = "jdbc:mysql://localhost:3306/haha";	//數(shù)據(jù)庫路徑(一般都是這樣寫),haha是數(shù)據(jù)庫名稱
				String name = "root";		//用戶名
				String password = "123456";	//密碼
				Connection conn;
				PreparedStatement preparedStatement = null;
 
				try {
					Class.forName("com.mysql.jdbc.Driver");		//連接驅(qū)動
					conn = DriverManager.getConnection(sql_url, name, password);	//連接數(shù)據(jù)庫
					if(!conn.isClosed())
						System.out.println("成功連接數(shù)據(jù)庫");
					
					// 刪除aa表中所有數(shù)據(jù)
					preparedStatement = conn.prepareStatement("delete from aa where true");
					preparedStatement.executeUpdate();
					
					// 將value數(shù)組中的數(shù)據(jù)依次存放到aa表中
					for(int i = 0; i < row; i++){
						preparedStatement = conn.prepareStatement("insert into aa values(" + Integer.parseInt(value[i][0]) + ",'" + value[i][1] + "')");
						preparedStatement.executeUpdate();
					}
					
				} catch (ClassNotFoundException e1) {
					// TODO Auto-generated catch block
					System.out.println("未成功加載驅(qū)動。");
					e1.printStackTrace();
				} catch (SQLException e1) {
					// TODO Auto-generated catch block
					System.out.println("未成功打開數(shù)據(jù)庫。");
					e1.printStackTrace();
				}
				
				// 保存后退出
				System.exit(0);
			}
		});
		
		// 退出
		exit.addActionListener(new ActionListener(){
			@Override
			public void actionPerformed(ActionEvent e) {
			// TODO Auto-generated method stub
				System.exit(0);
			}
				
		});
	}
	
	// 主函數(shù)
	public static void main(String[] args){
		new MyFrame();
	}
}

執(zhí)行以上代碼的時候,最初顯示的窗體如下所示:

java連接mysql數(shù)據(jù)庫并顯示

點擊增加按鈕并寫入需要增加的內(nèi)容(我增加了三次)如下圖:

java連接mysql數(shù)據(jù)庫并顯示

點擊刪除按鈕,刪除指定行(我刪除了第2行和第4行),如下圖:

java連接mysql數(shù)據(jù)庫并顯示

點擊保存按鈕,會發(fā)現(xiàn)窗口也關(guān)閉了。這是你可以再重新執(zhí)行代碼,會發(fā)現(xiàn)出現(xiàn)的表格頁面與上圖一樣。

點擊退出按鈕,關(guān)閉窗口。

java連接mysql數(shù)據(jù)庫并顯示就先給大家講到這里,對于其它相關(guān)問題大家想要了解的可以持續(xù)關(guān)注我們的行業(yè)資訊。我們的板塊內(nèi)容每天都會捕捉一些行業(yè)新聞及專業(yè)知識分享給大家的。

網(wǎng)站名稱:java連接mysql數(shù)據(jù)庫并顯示
標(biāo)題來源:http://jinyejixie.com/article32/pshgsc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣手機(jī)網(wǎng)站建設(shè)、搜索引擎優(yōu)化、網(wǎng)站導(dǎo)航網(wǎng)頁設(shè)計公司、網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站建設(shè)網(wǎng)站維護(hù)公司
剑阁县| 普安县| 许昌市| 阜康市| 福安市| 保康县| 凌云县| 合山市| 冕宁县| 阿克| 宁海县| 长葛市| 饶平县| 东平县| 新野县| 肇州县| 绥芬河市| 青阳县| 方山县| 洛扎县| 鲁山县| 皋兰县| 镇远县| 枝江市| 高平市| 黎平县| 潞城市| 德州市| 博白县| 石河子市| 光泽县| 赣州市| 正安县| 师宗县| 枣强县| 浙江省| 黑河市| 射阳县| 额尔古纳市| 广宗县| 晴隆县|