我是靠谱客的博主 优美汉堡,最近开发中收集的这篇文章主要介绍用eclipse实现java连接mysql数据库,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

/*这几天总结一下java连接mysql数据库的步骤 通过JDBC,运用eclipse navicat
写的一般,如有不足,欢迎评论区指正(喷我也OK)
这个程序是实现读取本地指定路径的xls文件中的信息存到数据库中
*/
一、导jar包,一般只需要配置 mysql-connector-java-5.1.44.bin.jar(版本一般选的稍微高一点儿就OK)
jxl.jar
具体可以百度搜索下载
二、写代码

import java.io.File; 
import java.sql.*; 
import jxl.Cell; 
import jxl.Sheet; 
import jxl.Workbook; 
  
public class PushExcelToMysql { 
 public static void main(String[] args) throws Exception { 
  
 Sheet sheet; //一个表
 Workbook workbook;//一个总表work
 
 
 try{ //连接驱动
  Class.forName("com.mysql.jdbc.Driver"); 
  }catch(Exception e){ 
  e.printStackTrace(); 
  } 
 try{ //连接工作表
  workbook=Workbook.getWorkbook(new File("C:\Users\Administrator\Desktop\data.xls")); 
  sheet=workbook.getSheet(0);//得到第一个表
  int clos = sheet.getColumns();//列数
  int rows = sheet.getRows();//行数
  Cell [][] cells=new Cell[rows][clos]; 
 for(int i=0;i<rows;i++){ //一个单元格一个单元格的获取里面的内容
 for(int j=0;j<clos;j++){ 
  cells[i][j]=sheet.getCell(j,i); 
//sheet.getCell(x,y)第y行,第x列,x,y可以看做坐标
 } 
 } 
 //加载具体驱动对象,连接数据库
 Connection c=DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/test?characterEncoding=UTF-8", "root","123456"); 
 String sql="insert into accident(year,month,day,kilometers,meters,weather,accident,reason,traffic,age,respsibility,people) values(?,?,?,?,?,?,?,?,?,?,?,?)"; 
 //结构化sql语言,变为java语言中的一个对象
 PreparedStatement ps=c.prepareStatement(sql); 
 /*jdbc:mysql://127.0.0.1:3306/test?characterEncoding=UTF-8", "root","123456"
  * test数据库名  root 123456  用户名  密码
  * insert into accident(year,month,day,kilometers,meters,weather,accident,reason,traffic,age,respsibility,people) values(?,?,?,?,?,?,?,?,?,?,?,?)
  * mysql插入语句,accident插入的表名,year,month,day,kilometers具体的字段,?占位符
  * 
  */
 for(int i=1;i<sheet.getRows();i++)//行数
 
 { 
  for(int j=1;j<=12;j++)
   ps.setString(j, cells[i][j-1].getContents());
        
  ps.execute(); 
 } 
rintln(sheet.getRows()); 
 
 }catch (Exception e) { 
 e.printStackTrace(); 
 } 
 System.out.println("恭喜您要饭成功");
 } 
}

最后

以上就是优美汉堡为你收集整理的用eclipse实现java连接mysql数据库的全部内容,希望文章能够帮你解决用eclipse实现java连接mysql数据库所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(31)

评论列表共有 0 条评论

立即
投稿
返回
顶部