poi excel 파일 읽기 (office 2003 버전 이하 읽기 또는 2007 버전 이상 지원)
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.OutputStream;
import java.math.BigDecimal;
import java.util.HashMap;
import org.apache.poi.hssf.usermodel.HSSFRichTextString;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.DataFormat;
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 ExcelReportFile {
private static final long serialVersionUID = 612381396391426330L;
private Workbook workBook = null;
private HashMap<Integer, CellStyle> numberCellStyles = null;
private CellStyle textCellStyle = null;
private static int DEFAULT_SHEET_INDEX = 0;
public ExcelReportFile(File file) throws FileNotFoundException, IOException {
try {
// office 2007
workBook = new XSSFWorkbook(new FileInputStream(file));
} catch (Exception ex) {
// office 2003
workBook = new HSSFWorkbook(new FileInputStream(file));
}
}
public Object getValue(int rowIndex, int colIndex) {
return readCellValue(rowIndex, colIndex);
}
/**
* , excel
*
* @param rowNo
* @param colNo
* @return
*/
public String getValueByNo(int rowNo, int colNo) {
Object rtnValue = readCellValue(rowNo - 1, colNo - 1);
String sValue = String.valueOf((rtnValue == null) ? "" : rtnValue);
return sValue;
}
private Object readCellValue(int rowIndex, int colIndex) {
Object sCellValue = null;
Row row = workBook.getSheetAt(0).getRow(rowIndex);
if (row != null) {
Cell cell = row.getCell(colIndex);
if (cell != null) {
int cellType = cell.getCellType();
// HSSFCell.CELL_TYPE_FORMULA
// Empty
if (cellType == Cell.CELL_TYPE_BLANK) {
sCellValue = null;
// int dCellValue = 0;
// sCellValue = dCellValue;
}
// String
if (cellType == Cell.CELL_TYPE_STRING) {
sCellValue = cell.getRichStringCellValue().getString()
.trim();
}
// Number
if (cellType == Cell.CELL_TYPE_NUMERIC) {
int dCellValue = (int) cell.getNumericCellValue();
sCellValue = dCellValue;
}
// formula
if (cellType == Cell.CELL_TYPE_FORMULA) {
sCellValue = cell.getCellFormula();
}
}
}
return sCellValue;
}
public void writeNumber(int sheetIndex, int rowIndex, int colIndex,
Number value, int scale) {
Cell cell = getCell(sheetIndex, rowIndex, colIndex);
// HSSFCellStyle cellStyle = getNumberCellStyle(scale);
// cell.setCellStyle(cellStyle);
cell.setCellValue(value.doubleValue());
}
public void writeText(int sheetIndex, int rowIndex, int colIndex,
String value) {
Cell cell = getCell(sheetIndex, rowIndex, colIndex);
// HSSFCellStyle cellStyle = getTextCellStyle();
// cell.setCellType(HSSFCell.CELL_TYPE_STRING);
// cellStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("text"));
// cell.setCellStyle(cellStyle);
cell.setCellValue(new HSSFRichTextString(value));
}
public void writeText(int rowIndex, int colIndex, String value) {
writeText(DEFAULT_SHEET_INDEX, rowIndex, colIndex, value);
}
public void writeTextByNo(int rowIndex, int colIndex, String value) {
writeText(DEFAULT_SHEET_INDEX, rowIndex - 1, colIndex - 1, value);
}
public void writeNumber(int rowIndex, int colIndex, Number value, int scale) {
writeNumber(DEFAULT_SHEET_INDEX, rowIndex, colIndex, value, scale);
}
public void writeNumberByNo(int rowIndex, int colIndex, Number value,
int scale) {
writeNumber(DEFAULT_SHEET_INDEX, rowIndex - 1, colIndex - 1, value,
scale);
}
private Cell getCell(int sheetIndex, int rowIndex, int colIndex) {
// Sheet
Sheet sheet = null;
try {
sheet = workBook.getSheetAt(sheetIndex);
} catch (IllegalArgumentException ex) {
sheet = workBook.createSheet();
}
// Row
Row row = null;
row = sheet.getRow(rowIndex);
if (row == null) {
row = sheet.createRow(rowIndex);
}
// Cell
Cell cell = null;
cell = row.getCell(colIndex);
if (cell == null) {
cell = row.createCell(colIndex);
}
return cell;
}
private CellStyle getNumberCellStyle(int scale) {
if (this.numberCellStyles == null) {
this.numberCellStyles = new HashMap<Integer, CellStyle>();
}
if (this.numberCellStyles.get(Integer.valueOf(scale)) == null) {
CellStyle numberCellStyle = workBook.createCellStyle();
StringBuilder zeroBd = new StringBuilder();
DataFormat format = this.workBook.createDataFormat();
zeroBd.append("0");
if (scale > 0) {
zeroBd.append(".");
for (int zCount = 0; zCount < scale; zCount++) {
zeroBd.append("0");
}
}
short doubleFormat = format.getFormat(zeroBd.toString());
numberCellStyle.setDataFormat(doubleFormat);
this.numberCellStyles.put(Integer.valueOf(scale), numberCellStyle);
return numberCellStyle;
} else {
return this.numberCellStyles.get(Integer.valueOf(scale));
}
}
public void write(OutputStream stream) throws IOException {
if (this.workBook != null && stream != null) {
this.workBook.write(stream);
}
}
private CellStyle getTextCellStyle() {
if (textCellStyle != null) {
return textCellStyle;
} else {
return this.workBook.createCellStyle();
}
}
/**
*
*
* @param colIndexStr
* @return
*/
public static int convertColIndexString2Number(String colIndexStr) {
int len = colIndexStr.toUpperCase().length();
char[] chars = colIndexStr.toCharArray();
int col = 0;
for (int index = 0; index < len; index++) {
char ca = chars[index];
int charAInt = Character.getNumericValue('A');
int charInt = Character.getNumericValue(ca);
BigDecimal bg = new BigDecimal(26);
col = col + bg.pow(len - index - 1).intValue()
* (charInt - charAInt + 1);
}
return col;
}
}
필요한 jar 패키지:
poi-3.8-20120326.jar
poi-ooxml-3.8-20120326.jar
poi-ooxml-schemas-3.8-20120326.jar
xbean.jar
하나 빠지면 안돼.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
POI Excel 사용자 정의 날짜 형식 읽기 (인스턴스 코드)POI로 Excel 데이터 읽기: (버전 번호: POI3.7) 1. Excel 읽기 2, Excel 데이터 처리: Excel 저장 날짜, 시간은 모두 수치 형식으로 저장되며, 읽을 때 POI가 먼저 수치 유형인지 아...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.