Java WorkBook對Excel的基本操作

1、異常java.lang.NoClassDefFoundError: org/apache/poi/UnsupportedFileFormatException

  解決方法:使用的poi的相關jar包一定版本一定要相同!!!!!


2、maven所使用jar包,沒有使用maven的話,就用poi-3.9.jar和poi-ooxml-3.9.jar(這個主要是用於Excel2007以後的版本)兩個jar包就行()

<dependency>
     <groupId>org.apache.poi</groupId>
     <artifactId>poi</artifactId>
     <version>3.9</version>
</dependency>
<dependency>
     <groupId>org.apache.poi</groupId>
     <artifactId>poi-ooxml</artifactId>
     <version>3.9</version>
</dependency>

3、java導入Excel

   先上傳Excel

//上傳Excel
@RequestMapping("/uploadExcel")
public boolean uploadExcel(@RequestParam MultipartFile file,HttpServletRequest request) throws IOException {
    if(!file.isEmpty()){
        String filePath = file.getOriginalFilename();
        //windows
        String savePath = request.getSession().getServletContext().getRealPath(filePath);
        //linux
        //String savePath = "/home/odcuser/webapps/file";
        File targetFile = new File(savePath);
        if(!targetFile.exists()){
            targetFile.mkdirs();
        }

        file.transferTo(targetFile);
        return true;
    }
    return false;
}

在讀取Excel裏面的內容

public static void readExcel() throws Exception{
	InputStream is = new FileInputStream(new File(fileName));
	Workbook hssfWorkbook = null;
	if (fileName.endsWith("xlsx")){
		hssfWorkbook = new XSSFWorkbook(is);//Excel 2007
	}else if (fileName.endsWith("xls")){
		hssfWorkbook = new HSSFWorkbook(is);//Excel 2003
	}
	// HSSFWorkbook hssfWorkbook = new HSSFWorkbook(is);
	// XSSFWorkbook hssfWorkbook = new XSSFWorkbook(is);
	User student = null;
	List<User> list = new ArrayList<User>();
	// 循環工作表Sheet
	for (int numSheet = 0; numSheet <hssfWorkbook.getNumberOfSheets(); numSheet++) {
		//HSSFSheet hssfSheet = hssfWorkbook.getSheetAt(numSheet);
		Sheet hssfSheet = hssfWorkbook.getSheetAt(numSheet);
		if (hssfSheet == null) {
			continue;
		}
		// 循環行Row
		for (int rowNum = 1; rowNum <= hssfSheet.getLastRowNum(); rowNum++) {
			//HSSFRow hssfRow = hssfSheet.getRow(rowNum);
			Row hssfRow = hssfSheet.getRow(rowNum);
			if (hssfRow != null) {
				student = new User();
				//HSSFCell name = hssfRow.getCell(0);
				//HSSFCell pwd = hssfRow.getCell(1);
				Cell name = hssfRow.getCell(0);
				Cell pwd = hssfRow.getCell(1);
				//這裏是自己的邏輯
				student.setUserName(name.toString());
				student.setPassword(pwd.toString());
				list.add(student);
			}
		}
	}
}

4、導出Excel

//創建Excel
@RequestMapping("/createExcel")
public String createExcel(HttpServletResponse response) throws IOException {

	//創建HSSFWorkbook對象(excel的文檔對象)
	HSSFWorkbook wb = new HSSFWorkbook();
	//建立新的sheet對象(excel的表單)
	HSSFSheet sheet=wb.createSheet("成績表");
	//在sheet裏創建第一行,參數爲行索引(excel的行),可以是0~65535之間的任何一個
	HSSFRow row1=sheet.createRow(0);
	//創建單元格(excel的單元格,參數爲列索引,可以是0~255之間的任何一個
	HSSFCell cell=row1.createCell(0);
	//設置單元格內容
	cell.setCellValue("學員考試成績一覽表");
	//合併單元格CellRangeAddress構造參數依次表示起始行,截至行,起始列, 截至列
	sheet.addMergedRegion(new CellRangeAddress(0,0,0,3));
	//在sheet裏創建第二行
	HSSFRow row2=sheet.createRow(1);
	//創建單元格並設置單元格內容
	row2.createCell(0).setCellValue("姓名");
	row2.createCell(1).setCellValue("班級");
	row2.createCell(2).setCellValue("筆試成績");
	row2.createCell(3).setCellValue("機試成績");
	//在sheet裏創建第三行
	HSSFRow row3=sheet.createRow(2);
	row3.createCell(0).setCellValue("李明");
	row3.createCell(1).setCellValue("As178");
	row3.createCell(2).setCellValue(87);
	row3.createCell(3).setCellValue(78);
	//.....省略部分代碼


	//輸出Excel文件
	OutputStream output=response.getOutputStream();
	response.reset();
	response.setHeader("Content-disposition", "attachment; filename=details.xls");
	response.setContentType("application/msexcel");
	wb.write(output);
	output.close();
	return null;
}

補充說明亂碼問題

  1、文件名亂碼(我發現只要解決了文件名亂碼,其他亂碼也會跟着解決)response.setHeader("Content-disposition", "attachment; filename=中文.xls");

  這個方法可以當做一個公用方法來使用,以後有亂碼的都可以調用此方法

public static String toUtf8String(String s){ 
     StringBuffer sb = new StringBuffer(); 
       for (int i=0;i<s.length();i++){ 
          char c = s.charAt(i); 
          if (c >= 0 && c <= 255){sb.append(c);} 
        else{ 
        byte[] b; 
         try { b = Character.toString(c).getBytes("utf-8");} 
         catch (Exception ex) { 
             System.out.println(ex); 
                  b = new byte[0]; 
         } 
            for (int j = 0; j < b.length; j++) { 
             int k = b[j]; 
              if (k < 0) k += 256; 
              sb.append("%" + Integer.toHexString(k).toUpperCase()); 
              } 
     } 
  } 
  return sb.toString(); 
}

調用的時候,response.setHeader("Content-disposition", "attachment; filename="+toUtf8String("中文.xls"));

 我上網查的時候,網上是說

 今天要說的是在創建工作表時,用中文做文件名和工作表名會出現亂碼的問題,先說以中文作爲工作表名,大家創建工作表的代碼一般如下:

    HSSFWorkbook workbook = new HSSFWorkbook();//創建EXCEL文件

        HSSFSheet  sheet= workbook.createSheet(sheetName);    //創建工作表

    這樣在用英文名作爲工作表名是沒問題的,但如果sheetName是中文字符,就會出現亂碼,解決的方法如下代碼:

    HSSFSheet  sheet= workbook.createSheet();

    workbook.setSheetName(0, sheetName,(short)1); //這裏(short)1是解決中文亂碼的關鍵;而第一個參數是工作表的索引號。        但是我發現根本沒有這個方法,只需要改了文件名的亂碼,其他亂碼自然就解決了!!!

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章