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();
			}
		}
	}

한 번 저장하면 데이터베이스에 한 번 접근해야 한다. 데이터가 많으면 자물쇠를 잠그고 성능이 낮을 수 있다. 다음은 대량 조작으로 최적화하여 가져온 데이터에 부합되지 않는 새로운 셀을 늘려야 한다.

좋은 웹페이지 즐겨찾기