All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.myjeeva.poi.ExcelWorkSheetHandler Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
/**
 * The MIT License
 *
 * Copyright (c) myjeeva.com
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE. 
 * 
 */
package com.myjeeva.poi;

import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;

import org.apache.commons.beanutils.PropertyUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.poi.xssf.eventusermodel.XSSFSheetXMLHandler.SheetContentsHandler;

/**
 * Generic Excel WorkSheet handler
 * 
 * @author Jeevanandam M.
 * 
 * @since v1.0
 */
public class ExcelWorkSheetHandler implements SheetContentsHandler {

	private static final Log LOG = LogFactory.getLog(ExcelWorkSheetHandler.class);

	private final static String HEADER_KEY = "HEADER";
	private boolean verifiyHeader = true;
	private int skipRows = 0;
	private int HEADER_ROW = 0;
	private int currentRow = 0;
	private List valueList;
	private Class type;
	private Map cellMapping = null;
	private T objCurrentRow = null;
	private T objHeader = null;
	
	/**
	 * Constructor
	 * 
	 * 

For Example: Reading rows (zero based) starting from Zero
* ExcelWorkSheetHandler<PersonVO> workSheetHandler = new ExcelWorkSheetHandler<PersonVO>(PersonVO.class, cellMapping); * * @param type * a {@link Class} object * @param cellMapping * a {@link Map} object */ public ExcelWorkSheetHandler(Class type, Map cellMapping) { this.type = type; this.cellMapping = cellMapping; this.valueList = new ArrayList(); } /** * Constructor * *

For Example: Reading rows (zero based) starting from Row 11
* ExcelWorkSheetHandler<PersonVO> workSheetHandler = new ExcelWorkSheetHandler<PersonVO>(PersonVO.class, cellMapping, 10); * * @param type * a {@link Class} object * @param cellMapping * a {@link Map} object * @param skipRows * a int object - Number rows to skip (zero based). * default is 0 */ public ExcelWorkSheetHandler(Class type, Map cellMapping, int skipRows) { this.type = type; this.cellMapping = cellMapping; this.valueList = new ArrayList(); this.skipRows = skipRows; } /** * Returns Value List (List<T>) read from Excel Workbook, Row represents one Object in a List. * *

For Example:
* List<PersonVO> persons = workSheetHandler.getValueList(); * * @return List<T> */ public List getValueList() { return valueList; } /** * Returns Excel Header check state, default it is enabled * * @return boolean */ public boolean isVerifiyHeader() { return verifiyHeader; } /** * To set the Excel Header check state, default it is enabled * * @param verifiyHeader a boolean */ public void setVerifiyHeader(boolean verifiyHeader) { this.verifiyHeader = verifiyHeader; } /** * @see org.apache.poi.xssf.eventusermodel.XSSFSheetXMLHandler.SheetContentsHandler#startRow(int) */ @Override public void startRow(int rowNum) { this.currentRow = rowNum; if (verifiyHeader) { objHeader = this.getInstance(); } if (rowNum > HEADER_ROW && rowNum >= skipRows) { objCurrentRow = this.getInstance(); } } /** * @see org.apache.poi.xssf.eventusermodel.XSSFSheetXMLHandler.SheetContentsHandler#cell(java.lang.String, * java.lang.String) */ @Override public void cell(String cellReference, String formattedValue) { if (currentRow >= skipRows) { if (StringUtils.isBlank(formattedValue)) { return; } if (HEADER_ROW == currentRow && verifiyHeader) { this.assignValue(objHeader, getCellReference(cellReference), formattedValue); } this.assignValue(objCurrentRow, getCellReference(cellReference), formattedValue); } } /** * @see org.apache.poi.xssf.eventusermodel.XSSFSheetXMLHandler.SheetContentsHandler#endRow() */ @Override public void endRow() { if (HEADER_ROW == currentRow && verifiyHeader && null != objHeader) { if (!checkHeaderValues(objHeader)) { throw new RuntimeException( "Header values doesn't match, so invalid Excel file!"); } } if (currentRow >= skipRows) { if (null != objCurrentRow && isObjectHasValue(objCurrentRow)) { // Current row data is populated in the object, so add it to // list this.valueList.add(objCurrentRow); } // Row object is added, so reset it to null objCurrentRow = null; } } /** * Currently not considered for implementation * * @see org.apache.poi.xssf.eventusermodel.XSSFSheetXMLHandler.SheetContentsHandler#headerFooter(java.lang.String, * boolean, java.lang.String) */ @Override public void headerFooter(String text, boolean isHeader, String tagName) { // currently not consider for implementation } private String getCellReference(String cellReference) { if (StringUtils.isBlank(cellReference)) { return ""; } return cellReference.split("[0-9]*$")[0]; } private void assignValue(Object targetObj, String cellReference, String value) { if (null == targetObj || StringUtils.isEmpty(cellReference) || StringUtils.isEmpty(value)) { return; } try { String propertyName = this.cellMapping.get(cellReference); if (null == propertyName) { LOG.error("Cell mapping doesn't exists!"); } else { PropertyUtils.setSimpleProperty(targetObj, propertyName, value); } } catch (IllegalAccessException iae) { LOG.error(iae.getMessage()); } catch (InvocationTargetException ite) { LOG.error(ite.getMessage()); } catch (NoSuchMethodException nsme) { LOG.error(nsme.getMessage()); } } private T getInstance() { try { return type.newInstance(); } catch (InstantiationException ie) { LOG.error(ie.getMessage()); } catch (IllegalAccessException iae) { LOG.error(iae.getMessage()); } return null; } /** * To check generic object of T has a minimum one value assigned or not */ private boolean isObjectHasValue(Object targetObj) { for (Map.Entry entry : cellMapping.entrySet()) { if (!StringUtils.equalsIgnoreCase(HEADER_KEY, entry.getKey())) { if (StringUtils.isNotBlank(getPropertyValue(targetObj, entry.getValue()))) { return true; } } } return false; } private boolean checkHeaderValues(Object targetObj) { boolean compareSuccess = true; if (cellMapping.containsKey(HEADER_KEY)) { List valueToCheck = Arrays.asList(cellMapping.get( HEADER_KEY).split(",")); for (Map.Entry entry : cellMapping.entrySet()) { if (!StringUtils.equalsIgnoreCase(HEADER_KEY, entry.getKey())) { String value = getPropertyValue(targetObj, entry.getValue()); LOG.debug("Comparing header value from excel file: " + value); if (!valueToCheck.contains(value)) { compareSuccess = false; break; } } } } else { LOG.warn("HEADER_KEY doesn't exists"); } return compareSuccess; } private String getPropertyValue(Object targetObj, String propertyName) { String value = ""; if (null == targetObj || StringUtils.isBlank(propertyName)) { LOG.error("targetObj or propertyName is null, both require to retrieve a value"); return value; } try { if (PropertyUtils.isReadable(targetObj, propertyName)) { Object v = PropertyUtils.getSimpleProperty(targetObj, propertyName); if (null != v && StringUtils.isNotBlank(v.toString())) { value = v.toString(); } } else { LOG.error("Given property (" + propertyName + ") is not readable!"); } } catch (IllegalAccessException iae) { LOG.error(iae.getMessage()); } catch (InvocationTargetException ite) { LOG.error(ite.getMessage()); } catch (NoSuchMethodException nsme) { LOG.error(nsme.getMessage()); } return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy