1. 程式人生 > >Java用POI讀取解析Excel時,遇到科學計數法的解決方法

Java用POI讀取解析Excel時,遇到科學計數法的解決方法

在匯入excel2003或者2007的時候難免會遇到某些單元格雖然是文字數字,但是使用java的poi來解析時會出現科學計算形式,下面我們看怎麼去掉這種格式,以文字來顯示:
1、導包

<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi</artifactId>
    <version>4.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>4.0.0</version>
</dependency>

ExcelUtil.java(部分程式碼來自於網路)

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.List;
 
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
 
public class ExcelUtil {
 
	/** 總行數 */
	private int totalRows = 0;
	/** 總列數 */
	private int totalCells = 0;
	/** 錯誤資訊 */
	private String errorInfo;
 
	/**
	 * @描述:得到總行數
	 * @時間:2014-08-29 下午16:27:15
	 * @引數:@return
	 * @返回值:int
	 */
	public int getTotalRows() {
		return totalRows;
	}
 
	/**
	 * @描述:得到總列數
	 * @時間:2014-08-29 下午16:27:15
	 * @引數:@return
	 * @返回值:int
	 */
	public int getTotalCells() {
		return totalCells;
	}
 
	/**
	 * @描述:得到錯誤資訊
	 * @時間:2014-08-29 下午16:27:15
	 * @引數:@return
	 * @返回值:String
	 */
	public String getErrorInfo() {
		return errorInfo;
	}
 
	/**
	 * @描述:驗證excel檔案
	 * @時間:2014-08-29 下午16:27:15
	 * @引數:@param filePath 檔案完整路徑
	 * @引數:@return
	 * @返回值:boolean
	 */
	public boolean validateExcel(String filePath) {
		/** 檢查檔名是否為空或者是否是Excel格式的檔案 */
		if (filePath == null
				|| !(WDWUtil.isExcel2003(filePath) || WDWUtil
						.isExcel2007(filePath))) {
			errorInfo = "檔名不是excel格式";
			return false;
		}
		/** 檢查檔案是否存在 */
		File file = new File(filePath);
		if (file == null || !file.exists()) {
			errorInfo = "檔案不存在";
			return false;
		}
		return true;
 
	}
 
	/**
	 * 
	 * @描述:根據檔名讀取excel檔案
	 * @時間:2014-08-29 下午16:27:15
	 * @引數:@param filePath 檔案完整路徑
	 * @引數:@return
	 * @返回值:List
	 */
	public List<List<String>> read(String filePath) {
		List<List<String>> dataLst = new ArrayList<List<String>>();
		InputStream is = null;
		try {
			/** 驗證檔案是否合法 */
			if (!validateExcel(filePath)) {
				System.out.println(errorInfo);
				return null;
			}
			/** 判斷檔案的型別,是2003還是2007 */
			boolean isExcel2003 = true;
			if (WDWUtil.isExcel2007(filePath)) {
				isExcel2003 = false;
			}
			/** 呼叫本類提供的根據流讀取的方法 */
			File file = new File(filePath);
			is = new FileInputStream(file);
			dataLst = read(is, isExcel2003);
			is.close();
		} catch (Exception ex) {
			ex.printStackTrace();
		} finally {
			if (is != null) {
				try {
					is.close();
				} catch (IOException e) {
					is = null;
					e.printStackTrace();
				}
			}
		}
		/** 返回最後讀取的結果 */
		return dataLst;
	}
 
	/**
	 * 
	 * @描述:根據檔名讀取excel檔案
	 * @時間:2014-08-29 下午16:27:15
	 * @引數:@param file 檔案
	 * @引數:@return
	 * @返回值:List
	 */
	public List<List<String>> read(File file) {
		List<List<String>> dataLst = new ArrayList<List<String>>();
		InputStream is = null;
		try {
			/** 判斷檔案的型別,是2003還是2007 */
			boolean isExcel2003 = true;
			if (WDWUtil.isExcel2007(file.getName())) {
				isExcel2003 = false;
			}
			is = new FileInputStream(file);
			dataLst = read(is, isExcel2003);
			is.close();
 
		} catch (Exception ex) {
			ex.printStackTrace();
		} finally {
			if (is != null) {
				try {
					is.close();
				} catch (IOException e) {
					is = null;
					e.printStackTrace();
				}
			}
		}
		/** 返回最後讀取的結果 */
		return dataLst;
	}
 
	/**
	 * @描述:根據流讀取Excel檔案
	 * @時間:2014-08-29 下午16:40:15
	 * @引數:@param inputStream
	 * @引數:@param isExcel2003
	 * @引數:@return
	 * @返回值:List
	 */
	public List<List<String>> read(InputStream inputStream, boolean isExcel2003) {
		List<List<String>> dataLst = null;
		try {
			/** 根據版本選擇建立Workbook的方式 */
			Workbook wb = null;
			if (isExcel2003) {
				wb = new HSSFWorkbook(inputStream);
			} else {
				wb = new XSSFWorkbook(inputStream);
			}
			dataLst = read(wb);
		} catch (IOException e) {
			e.printStackTrace();
		}
		return dataLst;
 
	}
 
	/**
	 * @描述:讀取資料
	 * @時間:2014-08-29 下午16:50:15
	 * @引數:@param Workbook
	 * @引數:@return
	 * @返回值:List<List<String>>
	 */
	private List<List<String>> read(Workbook wb) {
		List<List<String>> dataLst = new ArrayList<List<String>>();
		/** 得到第一個shell */
		Sheet sheet = wb.getSheetAt(0);
		/** 得到Excel的行數 */
		this.totalRows = sheet.getPhysicalNumberOfRows();
		/** 得到Excel的列數 */
		if (this.totalRows >= 1 && sheet.getRow(0) != null) {
			this.totalCells = sheet.getRow(0).getPhysicalNumberOfCells();
		}
		/** 迴圈Excel的行 */
		for (int r = 0; r < this.totalRows; r++) {
			Row row = sheet.getRow(r);
			if (row == null) {
				continue;
			}
			List<String> rowLst = new ArrayList<String>();
			/** 迴圈Excel的列 */
			for (int c = 0; c < this.getTotalCells(); c++) {
				Cell cell = row.getCell(c);
				String cellValue = "";
				if (null != cell) {
					// 以下是判斷資料的型別
					switch (cell.getCellType()) {
					case HSSFCell.CELL_TYPE_NUMERIC: // 數字
						DecimalFormat df = new DecimalFormat("0");
						cellValue = df.format(cell.getNumericCellValue());
						break;
					case HSSFCell.CELL_TYPE_STRING: // 字串
						cellValue = cell.getStringCellValue();
						break;
					case HSSFCell.CELL_TYPE_BOOLEAN: // Boolean
						cellValue = cell.getBooleanCellValue() + "";
						break;
					case HSSFCell.CELL_TYPE_FORMULA: // 公式
						cellValue = cell.getCellFormula() + "";
						break;
					case HSSFCell.CELL_TYPE_BLANK: // 空值
						cellValue = "";
						break;
					case HSSFCell.CELL_TYPE_ERROR: // 故障
						cellValue = "非法字元";
						break;
					default:
						cellValue = "未知型別";
						break;
					}
				}
				rowLst.add(cellValue);
			}
			/** 儲存第r行的第c列 */
			dataLst.add(rowLst);
		}
		return dataLst;
	}
	/**
	 * @描述:main測試方法
	 * @時間:2014-08-29 下午17:12:15
	 * @引數:@param args
	 * @引數:@throws Exception
	 * @返回值:void
	 */
	public static void main(String[] args) throws Exception {
		ExcelUtil poi = new ExcelUtil();
		List<List<String>> list = poi.read("c:/book.xlsx");
		if (list != null) {
			for (int i = 0; i < list.size(); i++) {
				System.out.print("第" + (i) + "行");
				List<String> cellList = list.get(i);
				for (int j = 0; j < cellList.size(); j++) {
					System.out.print("    " + cellList.get(j));
				}
				System.out.println();
			}
		}
	}
}
class WDWUtil {
	/**
	 * @描述:是否是2003的excel,返回true是2003
	 * @時間:2014-08-29 下午16:29:11
	 * @引數:@param filePath 檔案完整路徑
	 * @引數:@return
	 * @返回值:boolean
	 */
	public static boolean isExcel2003(String filePath) {
		return filePath.matches("^.+\\.(?i)(xls)$");
	}
	/**
	 * @描述:是否是2007的excel,返回true是2007
	 * @時間:2014-08-29 下午16:28:20
	 * @引數:@param filePath 檔案完整路徑
	 * @引數:@return
	 * @返回值:boolean
	 */
	public static boolean isExcel2007(String filePath) {
		return filePath.matches("^.+\\.(?i)(xlsx)$");
	}
}

注意private List<List> read(Workbook wb)方法中的這一句

cellValue = cell.getNumericCellValue() + "";

需改為下面的形式,可以去除科學計演算法

DecimalFormat df = new DecimalFormat("0");
cellValue = df.format(cell.getNumericCellValue());