利用poi從excel中匯入資料到資料庫

2021-07-05 08:11:54 字數 1396 閱讀 9598

最近遇到了從excel向資料庫匯入資料的情況,利用poi技術實現資料的匯入:

前台頁面**如下:

匯入

匯出

前台js**:

/**

* 匯入配置

*/function improtmessage() if(file == "國家地區碼")if(file == "位置區")if(file == "終端資訊")}})

} });

}

控制層**如下:

/**

* 匯入配置

/*** 根據不同的excle表名,呼叫不同的讀取方法

* @param name

* @param sheet

* @return

*/public void readobject(string name, sheet sheet)

else if (_name.equals("位置區"))

else if(_name.equals("小區"))

else if(_name.equals("終端資訊"))

}

/**

* 1讀取國家地區碼excel**

* @param sheet

* @return

*/public listreadcountryexcel(sheet sheet)

@override

public void addimeimessage(listlist)

@override

public void addpositionmessage(listlist)

@override

public void addvillagemessage(listlist)

xml中sql的**如下:

insert into imei

(imei, imei_version, imei_name, imei_factory_name)

values

(#, #, #, #)

hive 從Excel中匯入資料

拿到excel表後將資料保留,其他的亂七八糟都刪掉,然後另存為txt格式的文字,用nodepad 將文字轉換為utf 8編碼,此處命名為cityprovince.txt 將cityprovince.txt傳入操作的linux環境中 hive建表,注意字段型別要相同 drop table tmp.ci...

SQLite從Excel檔案中匯入資料

元資料 另存為.csv格式 用記事本開啟 開啟後的資料 android客戶端開發的時候使用了sqlite資料庫,為了測試,需要將一些excel檔案中的資料匯入到資料庫的表中,下面是幾個步驟 資料庫表的定義 create tablemydatas idinteger num1integer num2i...

學習筆記 從EXCEL檔案中匯入資料

從已知的excel檔案中讀取乙個樣本資料集合 1.開啟檔案的工作簿 2.根據名稱找到工作表 根據行數 nrows 和列數 ncols 讀取單元格的內容 3.列印出讀取的資料集合 import xlrd from pprint import pprint file test.xlsx wb xlrd....