excel 데이터베이스로 가져오기
3086 단어 Excel
1단계: 워크북 가져오기
2단계: 모든 sheet 가져오기
3단계: sheet의 데이터 해석(sheet.getCell(x, y)
/**
* map<sheetName[0],Content[]>,map<sheetName[1],Content[]>...
*/
public static Map[] importExcel(InputStream input) {
List mapList = new ArrayList();
Workbook workbook = null;
try {
// :
workbook = Workbook.getWorkbook(input);
// : sheet, sheet1,sheet2,sheet3
Sheet[] sheets = workbook.getSheets();
// :
for (int sheetIndex = 0; sheetIndex < sheets.length; sheetIndex++) {// sheet
Map map = new LinkedHashMap();
Sheet sheet = sheets[sheetIndex];
String sheetName = sheet.getName();//sheet
List sheetContent = new ArrayList();// sheet
int rowCount = sheet.getRows();// sheet
int columnCount = sheet.getColumns();// sheet
for (int row = 0; row < rowCount; row++) {
ExcelCell[] ecs = new ExcelCell[columnCount];
for (int column = 0; column < columnCount; column++) {
ecs[column] = new ExcelDataCell(sheet.getCell(column,//sheet.getCell()
row).getContents());
}
sheetContent.add(ecs);
}
map.put(sheetName, sheetContent);//map<String,String[]>
mapList.add(map);
}
Map[] maps = new Map[mapList.size()];
for (int i = 0; i < maps.length; i++) {
maps[i] = (Map) mapList.get(i);
}
return maps;
} catch (BiffException e) {
LOG.error(e.toString());
} catch (IOException e) {
LOG.error(e.toString());
} finally {
if (null != workbook) {
workbook.close();
}
}
return null;
}
데이터베이스로 정보 가져오기:
public void importdk(Map[] maps){
List excelList = null;
String sheetName = "";
try{
// sheet1 EXCEL
for(int i=0;i<maps.length;i++){
Iterator it = maps[i].keySet().iterator();
sheetName = (String)it.next();
excelList=(List)maps[i].get("Sheet1");
break;
}
for (int j = 1; j < excelList.size(); j++) {
Xinxi xx = new Xinxi();
ExcelCell[] excelArr = (ExcelCell[])excelList.get(j);
//
String name = (String)excelArr[0].getContent();
xx.setName(Long.parseLong(name.trim()));
//
String sex=(String) excelArr[1].getContent();
xx.setSex(sex)); //
xinxiDAO.save(xx);
}
}catch(Exception re){
try {
throw re;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
한 번 저장하면 데이터베이스에 한 번 접근해야 한다. 데이터가 많으면 자물쇠를 잠그고 성능이 낮을 수 있다. 다음은 대량 조작으로 최적화하여 가져온 데이터에 부합되지 않는 새로운 셀을 늘려야 한다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.