當前位置:首頁 » 數據倉庫 » javaxls導入到資料庫
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

javaxls導入到資料庫

發布時間: 2023-02-06 20:31:59

❶ java 怎麼從excel文件導入到oracle資料庫

java操作excel一般都使用poi來完成:

1、下載poi相關jar,maven的集成如下:(把${poi.version}替換成你要的版本)

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>${poi.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${poi.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml-schemas</artifactId>
<version>${poi.version}</version>
<scope>provided</scope>
</dependency>

2、根據poi相關api讀取sheet、row、cell,獲得excel的數據:

封裝row的對象,即每一行數據為一個對象,每個cell為對象里的一個屬性,

整個sheet的數據裝進集合里;

3、處理數據,可以對數據進行驗證或其他操作;

4、寫資料庫操作。

❷ java怎麼將excel表格數據導入資料庫

excel有行和列,可以對應資料庫表的行和欄位。先獲取你excel中的數據,如果你的數據是和java中實體對應的話,循環獲取每一行數據存放進實體對象中,然後進行資料庫保存就好了。
讀取excel數據可以使用poi。

❸ 用java怎麼將excel表格數據導入到mysql資料庫中

參考下面方法:
import java.io.FileInputStream;­
import java.io.FileNotFoundException;­
import java.io.IOException;­
import org.apache.commons.logging.Log;­
import org.apache.commons.logging.LogFactory;­
import org.apache.poi.hssf.usermodel.HSSFCell;­
import org.apache.poi.hssf.usermodel.HSSFRow;­
import org.apache.poi.hssf.usermodel.HSSFSheet;­
import org.apache.poi.hssf.usermodel.HSSFWorkbook;­

public class TestExcel {­
//記錄類的輸出信息­
static Log log = LogFactory.getLog(TestExcel.class); ­
//獲取Excel文檔的路徑­
public static String filePath = "D://excel.xls";­
public static void main(String[] args) {­
try {­
// 創建對Excel工作簿文件的引用­
HSSFWorkbook wookbook = new HSSFWorkbook(new FileInputStream(filePath));­
// 在Excel文檔中,第一張工作表的預設索引是0
// 其語句為:HSSFSheet sheet = workbook.getSheetAt(0);­
HSSFSheet sheet = wookbook.getSheet("Sheet1");­
//獲取到Excel文件中的所有行數­
int rows = sheet.getPhysicalNumberOfRows();
//遍歷行­
for (int i = 0; i < rows; i++) {­
// 讀取左上端單元格­
HSSFRow row = sheet.getRow(i);­
// 行不為空­
if (row != null) {­
//獲取到Excel文件中的所有的列­
int cells = row.getPhysicalNumberOfCells();­
String value = ""; ­
//遍歷列­
for (int j = 0; j < cells; j++) {­
//獲取到列的值­
HSSFCell cell = row.getCell(j);­
if (cell != null) {­
switch (cell.getCellType()) {­
case HSSFCell.CELL_TYPE_FORMULA:­
break;­
case HSSFCell.CELL_TYPE_NUMERIC:­
value += cell.getNumericCellValue() + ","; ­
break; ­
case HSSFCell.CELL_TYPE_STRING:­
value += cell.getStringCellValue() + ",";­
break;­
default:­
value += "0";­
break;­

}

// 將數據插入到mysql資料庫中­
String[] val = value.split(",");­
TestEntity entity = new TestEntity();­
entity.setNum1(val[0]);­
entity.setNum2(val[1]);­
entity.setNum3(val[2]);­
entity.setNum4(val[3]);­
entity.setNum5(val[4]);­
entity.setNum6(val[5]);­
TestMethod method = new TestMethod();­
method.Add(entity);­


} catch (FileNotFoundException e) {­
e.printStackTrace();­
} catch (IOException e) {­
e.printStackTrace();­


❹ 如何用java導入excel數據到資料庫

//從excle文檔中,將值導入至list數組
//xlsPath路徑從前台獲取
//Excle導入
publicList<TblUser>loadScoreInfo(StringxlsPath)throwsIOException{
Listtemp=newArrayList();
FileInputStreamfileIn=newFileInputStream(xlsPath);
//根據指定的文件輸入流導入Excel從而產生Workbook對象
Workbookwb0=newHSSFWorkbook(fileIn);
//獲取Excel文檔中的第一個表單
Sheetsht0=wb0.getSheetAt(0);
//對Sheet中的每一行進行迭代
for(Rowr:sht0){
//如果當前行的行號(從0開始)未達到2(第三行)則從新循環
if(r.getRowNum()<1){
continue;
}
//創建實體類
TblUserinfo=newTblUser();
//取出當前行第1個單元格數據,並封裝在info實體stuName屬性上
if(r.getCell(0)!=null){
r.getCell(0).setCellType(Cell.CELL_TYPE_STRING);
info.setId(Integer.parseInt(r.getCell(0).getStringCellValue()));
}
//同上
if(r.getCell(1)!=null){
r.getCell(1).setCellType(Cell.CELL_TYPE_STRING);
info.setUsername(r.getCell(1).getStringCellValue());
}
if(r.getCell(2)!=null){
r.getCell(2).setCellType(Cell.CELL_TYPE_STRING);
info.setPassword(r.getCell(2).getStringCellValue());
}
if(r.getCell(3)!=null){
r.getCell(3).setCellType(Cell.CELL_TYPE_STRING);
info.setState(r.getCell(3).getStringCellValue());
}
if(r.getCell(4)!=null){
r.getCell(4).setCellType(Cell.CELL_TYPE_STRING);
info.setRename(r.getCell(4).getStringCellValue());
}
if(r.getCell(5)!=null){
r.getCell(5).setCellType(Cell.CELL_TYPE_STRING);
info.setEmail(r.getCell(5).getStringCellValue());
}
temp.add(info);
}
fileIn.close();
returntemp;
}

publicvoidztree()
{

}
//導出當前頁的數據
publicvoidexportPage(){
List<TblUser>list=newArrayList<TblUser>();
String[]slist=r.split(",");
//將頁面獲取到的id集合遍歷,循環添加到list中,進行本頁數據到導出
for(inti=0;i<slist.length;i++){
list.add(tus.findById(java.lang.Integer.parseInt(slist[i])));
}
tus.export(list);
}

/**
*導入Excle到資料庫
*@returnnull不然有可能報錯!
*@throwsIOException
*/

publicvoidimportExcle()throwsIOException{
//調用導入文件方法並存入數組中
ints=0;//得到成功插入的條數
inti=0;//得到共有多少條
/**
*將不符合格式的數據錯誤信息存入數組中!
*格式要求:
*用戶名,密碼不能為空!
*用戶名不能和已存在的用戶名重復,長度在5-18位之間
*密碼長度在6-18位之間
*/
Stringerrors="";//保存導入失敗信息
try{
System.out.println("進入方法!");

lists=this.loadScoreInfo(path);
System.out.println(path);
for(TblUseru:lists){
i++;
if(u.getUsername()==""){
errors+="第"+i+"條數據的用戶名為空,導入失敗!";//^^:分割符
continue;
}
if(u.getPassword()==""){
errors+="第"+i+"條數據的密碼為空,導入失敗!";//^^:分割符
continue;
}
if(tus.findByName(u.getUsername())){
errors+="第"+i+"條數據的用戶名已存在,導入失敗!";//^^:分割符
continue;
}
if(u.getUsername().length()<5||u.getUsername().length()>20){
errors+="第"+i+"條數據的用戶名格式錯誤,導入失敗!";//^^:分割符
continue;
}
if(u.getPassword().length()<6||u.getPassword().length()>20){
errors+="第"+i+"條數據的密碼格式錯誤,導入失敗!";//^^:分割符
continue;
}
s++;
tus.save(u);//將數組中的數據添加到資料庫中!
}

}catch(Exceptione){
//TODOAuto-generatedcatchblock
e.printStackTrace();
}finally{
System.out.println("錯誤:"+errors);
}


}

❺ 如何用Java將excel數據導入資料庫

前端時間要導數據,,隨便找代碼弄了一個 能用的,貼給你看看。

public String uploadExcel(HttpServletRequest request) throws Exception {
MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
System.out.println("通過傳統方式form表單提交方式導入excel文件!");

InputStream in =null;
List<List<Object>> listob = null;
MultipartFile file = multipartRequest.getFile("upfile");
if(file.isEmpty()){
throw new Exception("文件不存在!");
}
in = file.getInputStream();
listob = new ImportExcelUtil().getBankListByExcel(in,file.getOriginalFilename());
in.close();

//該處可調用service相應方法進行數據保存到資料庫中,現只對數據輸出
for (int i = 0; i < listob.size(); i++) {
List<Object> lo = listob.get(i);

System.out.println(lo.get(0));
System.out.println(lo.get(1));

Word word = new Word();
word.setId(UUIDTools.getUUID());
word.setChinese(lo.get(1).toString());
word.setEnglish(lo.get(0).toString());
wordService.saveEnglishWord(word);
/* InfoVo vo = new InfoVo();
vo.setCode(String.valueOf(lo.get(0)));
vo.setName(String.valueOf(lo.get(1)));
vo.setDate(String.valueOf(lo.get(2)));
vo.setMoney(String.valueOf(lo.get(3)));

System.out.println("列印信息-->機構:"+vo.getCode()+" 名稱:"+vo.getName()+" 時間:"+vo.getDate()+" 資產:"+vo.getMoney()); */
}
return "result";
}

ImportExcelUtil類的getBankListByExcel方法:
public List<List<Object>> getBankListByExcel(InputStream in,String fileName) throws Exception{
List<List<Object>> list = null;

//創建excel工作簿
Workbook work = this.getWorkbook(in,fileName);

Sheet sheet = null;
Row row = null;
Cell cell = null;

list = new ArrayList<List<Object>>();

//遍歷Excel中所有的sheet
for (int i = 0; i < work.getNumberOfSheets(); i++) {
sheet = work.getSheetAt(i);
if(sheet==null){continue;}

//遍歷當前sheet中的所有行
for (int j = sheet.getFirstRowNum(); j < sheet.getLastRowNum(); j++) {
row = sheet.getRow(j);
if(row==null||row.getFirstCellNum()==j){continue;}

//遍歷所有的列
List<Object> li = new ArrayList<Object>();
for (int y = row.getFirstCellNum(); y < row.getLastCellNum(); y++) {
cell = row.getCell(y);
li.add(this.getCellValue(cell));
}
list.add(li);
}
}
// work.close();
return list;
}

前台弄個上傳標簽 訪問這個action就行了。

❻ 怎樣用java把excel數據導入資料庫

網上提供了很多的java讀取excel的包,如POI、jxl等,先讀取excel中的數據,然後封裝存入資料庫即可。

❼ java將excel文件中的數據導入到mySql資料庫中 完整代碼

//根據excel文件,生成輸入流
FileInputStream fis = new FileInputStream(new File("D:\\aa.xlsx"));
//用輸入流生成poi 對象,以讀取excel內容
//excel2007以上用XSSFWorkbook,2003用HSSFWorkbook
Workbook workbook = new XSSFWorkbook(fis);
Sheet sheet = workbook.getSheetAt(0);//取第一個sheet
String str1 = sheet.getRow(0).getCell(0).getStringCellValue();//取第一行第一列字元值
//getDateCellValue();日期類型 getNumericCellValue()數字類型;getHyperlink()超鏈接 等等()
//接下來 選擇性插入資料庫吧,明白?

❽ java如何把excel內容導入到mysql資料庫,資料庫的列名就是excel的列名

1、添加POI jar包到項目的lib目錄下-
2、Excel文件目錄:d://excel.xls-
3、資料庫欄位為:num1 num2 num3 num4 num5 num6-
4、資料庫名:blog-
5、表名:test-
6、編寫類:連接mysql的字元串方法、插入的方法、實體類--
import java.io.FileInputStream;-
import java.io.FileNotFoundException;-
import java.io.IOException;-
import org.apache.commons.logging.Log;-
import org.apache.commons.logging.LogFactory;-
import org.apache.poi.hssf.usermodel.HSSFCell;-
import org.apache.poi.hssf.usermodel.HSSFRow;-
import org.apache.poi.hssf.usermodel.HSSFSheet;-
import org.apache.poi.hssf.usermodel.HSSFWorkbook;-
public class TestExcel {-
//記錄類的輸出信息-
static Log log = LogFactory.getLog(TestExcel.class); -
//獲取Excel文檔的路徑-
public static String filePath = "D://excel.xls";-
public static void main(String[] args) {-
try {-
// 創建對Excel工作簿文件的引用-
HSSFWorkbook wookbook = new HSSFWorkbook(new FileInputStream(filePath));-
// 在Excel文檔中,第一張工作表的預設索引是0,-
// 其語句為:HSSFSheet sheet = workbook.getSheetAt(0);-
HSSFSheet sheet = wookbook.getSheet("Sheet1");-
//獲取到Excel文件中的所有行數-
int rows = sheet.getPhysicalNumberOfRows();-
//遍歷行-
for (int i = 0; i < rows; i++) {-
// 讀取左上端單元格-
HSSFRow row = sheet.getRow(i);-
// 行不為空-
if (row != null) {-
//獲取到Excel文件中的所有的列-
int cells = row.getPhysicalNumberOfCells();-
String value = ""; -
//遍歷列-
for (int j = 0; j < cells; j++) {-
//獲取到列的值-
HSSFCell cell = row.getCell(j);-
if (cell != null) {-
switch (cell.getCellType()) {-
case HSSFCell.CELL_TYPE_FORMULA:-
break;-
case HSSFCell.CELL_TYPE_NUMERIC:-
value += cell.getNumericCellValue() + ","; -
break; -
case HSSFCell.CELL_TYPE_STRING:-
value += cell.getStringCellValue() + ",";-
break;-
default:-
value += "0";-
break;-
}-
} -
}-
// 將數據插入到mysql資料庫中-
String[] val = value.split(",");-
TestEntity entity = new TestEntity();-
entity.setNum1(val[0]);-
entity.setNum2(val[1]);-
entity.setNum3(val[2]);-
entity.setNum4(val[3]);-
entity.setNum5(val[4]);-
entity.setNum6(val[5]);-
TestMethod method = new TestMethod();-
method.Add(entity);-
}-
}-
} catch (FileNotFoundException e) {-
e.printStackTrace();-
} catch (IOException e) {-
e.printStackTrace();-
}-
}-
}-

❾ 在JAVA web開發中怎麼把Excel中的數據導入到oracle資料庫中

1.准備數據:在excel中構造出需要的數據
2.將excel中的數據另存為文本文件(有製表符分隔的)
3.將新保存到文本文件中的數據導入到pl*sql中
在pl*sql中選擇tools--text importer,在出現的窗口中選擇Data from Textfile,然後再選擇Open data file,
在彈出的文件選擇框中選中保存有數據的文本文件,此時將會看到data from textfile中顯示將要導入的數據
4.在configuration中進行如下配置
注:如果不將Name in header勾選上會導致欄位名也當做記錄被導入到資料庫中,從而導致數據錯誤
5.點擊data to oracle,選擇將要導入數據的表,並在fields中將文本中的欄位與表中的欄位進行關聯
6.點擊import按鈕進行導入
7.查看導入的數據
OK,至此數據導入成功。