package com.synnex.web.common.util; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.lang.reflect.InvocationTargetException; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Properties; import org.apache.commons.beanutils.BeanUtils; import org.apache.log4j.Logger; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFRow; import org.apache.poi.hssf.usermodel.HSSFSheet; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.springframework.core.io.support.PropertiesLoaderUtils; import com.synnex.orm.marketing.event.model.Hotel; public class ExcelParser implements Iterator<Map<String,String>> { private static final Logger logger = Logger.getLogger(ExcelParser.class); private HSSFWorkbook book; private HSSFSheet sheet; private InputStream is; private Iterator<?> rowIterator; private int index; String[] buildHeader; private Properties keyMap; public ExcelParser(String excelFile) throws IOException{ is = new FileInputStream(excelFile); book = new HSSFWorkbook(is); init(); } public ExcelParser(InputStream is) throws IOException{ book = new HSSFWorkbook(is); init(); } private void init() throws IOException{ loadProperties(); sheet = book.getSheetAt(0); rowIterator = sheet.rowIterator(); buildHeader = buildTile(); } public void loadProperties() throws IOException{ keyMap = PropertiesLoaderUtils.loadAllProperties("convert_map.properties"); } private String[] buildTile(){ HSSFRow row = sheet.getRow(0); int colNum = row.getPhysicalNumberOfCells(); String[] title = new String[colNum]; for (int i=0; i<colNum; i++) { String val = getCellValue(row.getCell(i)); title[i] = keyMap.getProperty(val, val); } return title; } public boolean hasNext(){ return rowIterator.hasNext(); } public Map<String, String> next(){ HSSFRow row = (HSSFRow)rowIterator.next(); Iterator<?> cellIterator = row.cellIterator(); Map<String,String> rowMap = new HashMap<String,String>(); while(cellIterator.hasNext()){ HSSFCell cell = (HSSFCell)cellIterator.next(); if(++index==1){ break; } rowMap.put(buildHeader[cell.getColumnIndex()],getCellValue(cell)); } return rowMap; } public void remove(){ throw new UnsupportedOperationException("Sorry,only support read..."); } private String getCellValue(HSSFCell cell){ String value = null; switch(cell.getCellType()) { case HSSFCell.CELL_TYPE_STRING: value = cell.getRichStringCellValue().getString(); break; case HSSFCell.CELL_TYPE_NUMERIC: long dd = (long)cell.getNumericCellValue(); value = dd+""; break; case HSSFCell.CELL_TYPE_BLANK: value = ""; break; case HSSFCell.CELL_TYPE_FORMULA: value = String.valueOf(cell.getCellFormula()); break; case HSSFCell.CELL_TYPE_BOOLEAN: value = String.valueOf(cell.getBooleanCellValue()); break; case HSSFCell.CELL_TYPE_ERROR: value = String.valueOf(cell.getErrorCellValue()); break; default: break; } return value; } public void close(){ if(is != null){ try { is.close(); } catch (IOException e) { logger.error(e.getMessage(), e); } } } public static void main(String[] args) throws IllegalAccessException, InvocationTargetException, IOException{ ExcelParser ep = new ExcelParser("c:/hotel.xls"); while(ep.hasNext()){ Map<String,String> row = ep.next(); if(!row.isEmpty()){ Hotel hotel = new Hotel(); BeanUtils.populate(hotel, row); System.out.println(hotel); } } ep.close(); } }
package com.synnex.web.common.util; import java.io.IOException; import java.io.InputStream; import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.apache.commons.beanutils.BeanUtils; import org.apache.log4j.Logger; import com.synnex.orm.marketing.event.model.Hotel; public class ExcelReader { private static final Logger logger = Logger.getLogger(ExcelReader.class); private ExcelParser xls_parser; public ExcelReader(String filenName) throws IOException{ xls_parser = new ExcelParser(filenName); } public ExcelReader(InputStream is) throws IOException{ xls_parser = new ExcelParser(is); } public void close(){ if(xls_parser!=null){ xls_parser.close(); } } public <T> List<T> convert(Class<T> clz) { List<T> ret = new ArrayList<T>(); while(xls_parser.hasNext()){ Map<String,String> row = xls_parser.next(); if(!row.isEmpty()){ try { T obj = clz.newInstance(); BeanUtils.populate(obj, row); ret.add(obj); } catch (InstantiationException e) { logger.error(e.getMessage()); throw new RuntimeException(e.getMessage()); } catch (IllegalAccessException e) { logger.error(e.getMessage()); throw new RuntimeException(e.getMessage()); } catch (InvocationTargetException e) { logger.error(e.getMessage()); throw new RuntimeException(e.getMessage()); } } } close(); return ret; } public static void main(String[] args) throws InstantiationException, IllegalAccessException, InvocationTargetException, IOException{ ExcelReader reader = new ExcelReader("c:/hotel.xls"); // System.out.println(reader.conver(Hotel.class)); for(Hotel hotel:reader.convert(Hotel.class)){ System.out.println(hotel.getAddress()); } } }
今天发现原来poi已经有了类似的实现
http://myjeeva.com/read-excel-through-java-using-xssf-and-sax-apache-poi.html
相关推荐
使用poi解析excel文件,并将数据写入到数据库 项目说明 这个项目实现的功能是读取excel文件中的数据,解析并写入数据库。 读取的excel文件位于项目目录下的 excel\0805.xlsx 使用IntelliJ IDEA开发此项目 使用MYSQL...
以上就是使用Java Poi解析Excel数据的基本流程。在实际应用中,你可能还需要处理其他复杂场景,比如样式、公式、超链接等。Poi库提供了丰富的API来处理这些问题,使得与Excel文件的交互变得简单且灵活。在提供的"poi...
在这个"利用POI解析excel并存入数据库demo"中,我们将关注如何使用 POI 库来读取 Excel 文件,并将数据有效地存入 MySQL 数据库。 首先,要开始使用 POI,你需要在你的项目中引入相应的依赖。如果你使用的是 Maven...
标题提到的"poi解析excel文件"是利用Apache POI 3.8版本进行Excel数据的读取和解析。 在Apache POI 3.8中,主要涉及以下核心概念: 1. **HSSF(Horrible Spreadsheet Format)**:这是Apache POI中处理旧版Excel...
标题“POI解析EXCEL分层”涉及到的主要知识点是Apache POI库在处理Microsoft Excel文件时的层次化数据解析。Apache POI是一个流行的开源Java API,它允许开发者读取、写入和修改Microsoft Office格式的文件,其中...
在这个"poi 解析excel文件内容demo"中,我们主要关注如何使用Apache POI库来读取和解析Excel文件,无论它们是2003版的.XLS还是2007以后的.XLSX格式。 首先,Apache POI提供了两种主要的接口来处理Excel文件:HSSF...
【标题】"poi解析excel"涉及的是Java编程中使用Apache POI库来处理Microsoft Excel文件的知识。Apache POI是开源项目,提供了API用于读写Microsoft Office格式的文件,特别是Excel。在Java应用中,POI使得开发者能够...
以上就是使用Apache POI解析Excel文件并将数据存入Oracle数据库的基本步骤。在实际应用中,你可能需要根据具体需求进行调整,例如处理不同类型的单元格(数字、日期等)、异常处理、优化性能等。
POI解析Excel简单实例
apache poi解析Excel时报错,我将Excel打开后保存,就不会报错,我将重写的类从新打包这样问题虽然网上有解决方案,但是需要自己打包重写对应类,我已将这些步骤做好了。
这个“POI解析excel并存入mysqlのdemo”是利用 Java 的 Apache POI 库来读取 Excel 数据,并将这些数据存储到 MySQL 数据库中的示例。下面我们将详细探讨相关的知识点。 1. **Apache POI**: Apache POI 是一个...
在描述中提到的“ poi解析excel的工具类”,通常包含了一些常用的方法,例如打开文件、读取单元格数据、处理合并单元格等。以下是一些可能包含在该工具类中的关键方法: 1. **打开文件**:使用`WorkbookFactory`类...
【标题】"POI解析Excel文档"涉及到的主要技术是Apache POI库,它是一个用于读取和写入Microsoft Office格式档案的开源Java API。在Java编程环境中,使用POI库可以方便地处理Excel(.xlsx和.xls)文件,进行数据的...
在Java环境中,使用Apache POI库解析Excel文件时,确实需要引入一系列的依赖包来确保所有必要的功能得以正常运行。这些包包含了对Excel文件格式的理解和支持,允许开发者读取、写入和修改Excel数据。 1. **Apache ...
最新版poi解析excel2007源码,简单实用,需要的可下.
本示例将深入讲解如何使用Apache POI来解析Excel文件。 Apache POI是Apache软件基金会的一个开源项目,它的主要功能是处理微软的Office Open XML (OOXML) 和早期的二进制文件格式,例如Excel的.BIFF8格式。在Java中...
《使用POI解析Excel》 在信息技术领域,处理数据是日常工作中不可或缺的一部分,而Excel作为广泛使用的电子表格软件,其数据处理能力强大且灵活。Apache POI是一个开源库,专门用于读取和写入Microsoft Office格式...
在本文中,我们将深入探讨如何使用POI解析Excel 2013和2017版本的文件,并将结果转换为List集合。 一、Apache POI简介 Apache POI是Apache软件基金会的一个开源项目,它提供了API来读取、写入和修改Microsoft ...