POI를 사용하여 excel 가져오기
5027 단어 Excel
public int importExcel(File file) throws Exception {
FileInputStream fis = null;
String sheetName = "sheetname";
try {
fis = new FileInputStream(file);
POIFSFileSystem fs = new POIFSFileSystem(fis);
HSSFWorkbook wb = new HSSFWorkbook(fs);
HSSFSheet searchWordSheet = wb.getSheet(sheetName);
// sheet
if (searchWordSheet == null) {
return -2;
}
// sheet
if (searchWordSheet.getLastRowNum() < 1) {
return -1;
}
List<String []> ispList = new LinkedList<String []>();
// excel , cell 。
for (int i = 1; i <= searchWordSheet.getLastRowNum(); i++) {
HSSFRow row = searchWordSheet.getRow(i);
if (row == null) {
continue;
}
String [] isp = new String [3];
cell = row.getCell((short) 0);
Long value = getNumberValueFromCell(cell);
isp[0] = value.toString();
cell = row.getCell((short) 1);
isp[1] = getStringValueFromCell(cell);
cell = row.getCell((short) 2);
isp[2] = getStringValueFromCell(cell);
ispList.add(isp);
}
//
List<String []> ispSaveList = new LinkedList<String []>();
for (String [] isp : ispList) {
ispSaveList.add(isp);
}
saveIspFullInfoList(ispSaveList); }
public Long getNumberValueFromCell(HSSFCell cell) {
try {
if (cell != null && cell.getCellType() == HSSFCell.CELL_TYPE_STRING) {
return NumberUtils.isNumber(cell.getStringCellValue()) ? Long
.parseLong(cell.getStringCellValue()) : null;
} else if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
return new Double(cell.getNumericCellValue()).longValue();
} else {
return null;
}
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
}
public String getStringValueFromCell(HSSFCell cell) {
if (isNullForCellValue(cell)) {
return null;
} else {
if (cell.getCellType() == HSSFCell.CELL_TYPE_STRING) {
return cell.getStringCellValue();
} else if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
return new Double(cell.getNumericCellValue()).longValue()+"";
} else {
return null;
}
}
}
public Object getSourceValueFromCell(HSSFCell cell) {
if (isNullForCellValue(cell)) {
return null;
} else {
if (cell.getCellType() == HSSFCell.CELL_TYPE_STRING) {
return cell.getStringCellValue();
} else if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
return new Double(cell.getNumericCellValue()).longValue();
} else {
return null;
}
}
}
상기 세 개의 코드는 서로 다른 유형의cell의 값을 얻는다
일부 코드 설명:saveIspFullInfoList(ispSaveList);Excel에서 얻은 데이터를 데이터베이스에 저장
HSSFSheet searchWordSheet = wb.getSheet(sheetName);sheet의 이름을 통해 sheet 페이지를 얻을 수 있습니다. (excel 파일에 여러 sheet 페이지가 있을 수 있습니다.)
POIFSFileSystem fs = new POIFSFileSystem(fis);
HSSFWorkbook wb = new HSSFWorkbook(fs);
이것은 바로 파일을 통해 HSSFWorkbook을 얻는 것이다. 이전의 글에서도 말했듯이 서로 다른 버전의 excel은 서로 다른 방식으로 해석해야 한다.그래서 이전 문장의 방식으로 해석할 수도 있다.코드는 다음과 같습니다.
01.public static Workbook getWorkbook(InputStream is) throws IOException{
02. Workbook wb = null;
03. if(!is.markSupported()){
04. is = new PushbackInputStream(is,8);
05. }
06. if (POIFSFileSystem.hasPOIFSHeader(is)) { //Excel2003
07. wb = (Workbook) new HSSFWorkbook(is);
08. }else if (POIXMLDocument.hasOOXMLHeader(is)) { //Excel2007
09. wb = new XSSFWorkbook(is);
10. }else{
11. throw new IllegalArgumentException(" Excel poi !");
12. }
13. // }
14. return wb;
15. }
가져오는 데 필요한 패키지는 에 있습니다여기 다운로드http://download.csdn.net/detail/javaweiming/5849101 .
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Excel Grep toolExcel Grep tool ■히나가타 ■ 시트 구성 ExcelGrep.cls...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.