最近老師布置了個任務,用Java對excel后綴名為xlsx的文件進行簡單的增,刪,改,查操作;雖說是個簡單的程序,可作為剛接觸的我來說還是有些磕磕碰碰。不過好在還是完成了,進行一個簡單的總結。
首先導入了一個poi.jar 網上有很多這個資源可以下載
XSSFSheet sheet=null;
XSSFWorkbook book=null;
一:查 (查找本地指定位置的excel表格,在控制臺輸出)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
public void print_excel(){ //獲取excel表格的行數 int lastrownumber = sheet.getLastRowNum(); String ret= " " ; //獲取數據 for (a= 0 ;a<lastrownumber;a++){ XSSFRow row=sheet.getRow(a); //獲取excel表格的列數 int lastcellnum=row.getLastCellNum(); for (b= 0 ;b<lastcellnum;b++){ XSSFCell cell =row.getCell(b); //判斷cell返回的類型并賦值給ret ret=excel_operation.getExcelCellValue(cell); System.out.print(ret+ " " ); } System.out.println(); } } |
二:改 (修改excel表格中某一單元格的內容)
1
2
3
4
5
6
7
8
9
10
11
|
public void set_excelcell( int i, int j,String str){ //獲取行的信息 XSSFRow row=sheet.getRow(i- 1 ); //獲取列的信息 XSSFCell cell =row.getCell(j- 1 ); //獲取被修改單元格的內容 String string = excel_operation.getExcelCellValue(cell); //修改單元格的內容為str cell.setCellValue(str); System.out.println( "已將" +string+ "改為" +str); } |
三:增 (在excel表格中插入一行內容到指定位置)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
public void insert( int rowIndex, String[] objs) { if (rowIndex == 0 ) { throw new IllegalArgumentException( "不能插在第0行,第0行是用來定義的!" ); } if (rowIndex > sheet.getLastRowNum() + 1 ) { throw new IllegalArgumentException( "最多只能插入在最后一行的后面。" ); } int referRowIndex = - 1 ; //參考行的行號。 if (sheet.getPhysicalNumberOfRows() <= 1 ) { referRowIndex = rowIndex - 1 ; } else { referRowIndex = rowIndex - 1 ; if (rowIndex == sheet.getLastRowNum() + 1 ) { //是插入最后一行 //不做任何處理 } else { //往下移動一位 sheet.shiftRows(rowIndex, sheet.getLastRowNum(), 1 , true , false ); } } Row targetRow = sheet.createRow(rowIndex); Row referRow = sheet.getRow(referRowIndex); // 參考行 Cell targetCell, referCell; for ( int i = 0 ; i < objs.length; i++) { targetCell = targetRow.createCell(i); referCell = referRow.getCell(i); targetCell.setCellStyle(referCell.getCellStyle()); targetCell.setCellType(referCell.getCellType()); targetCell.setCellValue(objs[i]); // 設置值 } } |
四: 刪 (刪除指定行的內容)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 刪除一行數據(Excel表中,行是從0起算的) public void delete( int rowIndex) { //刪除的是最后一行 if (rowIndex == sheet.getLastRowNum()) { sheet.removeRow(sheet.getRow(sheet.getLastRowNum())); //刪除的不是最后一行 } else { sheet.shiftRows(rowIndex + 1 , sheet.getLastRowNum(), - 1 , true , false ); sheet.removeRow(sheet.getRow(sheet.getLastRowNum() + 1 )); } } |
五: 判斷返回類型 (因為excel表格中的內容不同,有字符型的,有整數型的等等,必須進行判斷其類型才能進行輸出)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
private static String getExcelCellValue(XSSFCell cell) { String ret= " " ; try { //當返回值的類型為空返回空格 if (cell == null ) { ret = " " ; //當返回值的類型為字符串類型 } else if (cell.getCellType() == XSSFCell.CELL_TYPE_STRING) { ret = cell.getStringCellValue(); //當返回值的類型為數值類型 } else if (cell.getCellType() == XSSFCell.CELL_TYPE_NUMERIC) { ret = "" + cell.getNumericCellValue(); //當返回值的類型為表達式類型 } else if (cell.getCellType() == XSSFCell.CELL_TYPE_FORMULA) { ret = cell.getCellFormula(); //當返回值的類型為異常類型 } else if (cell.getCellType() == XSSFCell.CELL_TYPE_ERROR) { ret = " " + cell.getErrorCellValue(); //當返回值的類型為布爾類型 } else if (cell.getCellType() == XSSFCell.CELL_TYPE_BOOLEAN) { ret = " " + cell.getBooleanCellValue(); //當返回值的類型為空的時候 } else if (cell.getCellType() == XSSFCell.CELL_TYPE_BLANK) { ret = " " ; } } catch (Exception ex) { ex.printStackTrace(); ret = " " ; } return ret; } |