国产激情久久久久影院小草_国产91高跟丝袜_99精品视频99_三级真人片在线观看

Java將excel數(shù)據(jù)導(dǎo)入數(shù)據(jù)庫的方法

時間:2024-11-01 17:39:53 JAVA認(rèn)證 我要投稿
  • 相關(guān)推薦

Java將excel數(shù)據(jù)導(dǎo)入數(shù)據(jù)庫的方法

  很多時候拼接字符串是很多項目必須做的,該代碼中我們拼接了不少sql語句,也許有更簡單的方式,可以使用java將excel里的數(shù)據(jù)導(dǎo)入到數(shù)據(jù)庫里,下面一起來看看使用java將excel里的數(shù)據(jù)導(dǎo)入到數(shù)據(jù)庫里的基本方法,僅供參考。

  /**將execl數(shù)據(jù)導(dǎo)入數(shù)據(jù)庫

  * @author trsli

  * */

  public class CreateDBTable {

  private static Connection conn;

  private static String sql="";

  private static StringBuffer buf=new StringBuffer();

  static{

  conn=DBConnection.getConnection();

  }

  public static void main(String[] args) {

  //數(shù)據(jù)。xls文件路徑

  System.out.println("輸入文件路徑:");

  String filename=new Scanner(System.in)。nextLine();

  //獲取需要插入數(shù)據(jù)庫的數(shù)據(jù)內(nèi)容

  Object[][] contents=new PoiUtil()。getmessage(filename);

  //獲取數(shù)據(jù)庫創(chuàng)建表格的字段名

  Object[] titles=new PoiUtil()。gettitles(filename);

  System.out.println("輸入數(shù)表格名:");

  String fname=new Scanner(System.in)。nextLine();

  try {

  String ziduan="";

  String blank="";

  PreparedStatement stmt=conn.prepareStatement(sql);

  buf.append("create table "+fname+"( id int primary key auto_increment");

  //拼接字符串,主要是為了完全實現(xiàn)動態(tài)創(chuàng)建數(shù)據(jù)表格以及后期插入數(shù)據(jù)

  for(int i=0;i

  buf.append(","+titles[i]+" varchar(20)");

  if(i==titles.length-1){//字符串末尾沒有","

  ziduan+=titles[i]+"";

  blank+="?";

  }else{

  ziduan+=titles[i]+",";

  blank+="?,";

  }

  }

   //sql數(shù)據(jù)拼裝完成

  sql="insert into "+fname+"("+ziduan+") values ("+ blank+")";

  buf.append(" );");

  stmt.executeUpdate(buf.toString());

  System.out.println("預(yù)處理…");

【Java將excel數(shù)據(jù)導(dǎo)入數(shù)據(jù)庫的方法】相關(guān)文章:

將格式化文本導(dǎo)入Excel的步驟10-07

ORACLE與excel的數(shù)據(jù)互傳方法07-14

Excel快速輸入數(shù)據(jù)的方法10-12

介紹Excel的數(shù)據(jù)排序方法07-21

如何將格式化文本導(dǎo)入Excel09-26

Coreldraw(CDR)中導(dǎo)入Excel表格的方法06-27

將電腦文件導(dǎo)入ipad中的方法09-07

如何將Excel表格導(dǎo)入到autocad中08-11

EXCEL數(shù)據(jù)處理中的方法07-17

Excel避免重復(fù)輸入數(shù)據(jù)的方法08-13