# lpexcel **Repository Path**: 290770637/lpexcel ## Basic Information - **Project Name**: lpexcel - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 2 - **Created**: 2017-05-19 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LpExcel 这个工具类目前只有一个功能,就是导入Excel并映射到pojo ## Excel导入 使用ExcelUtil.import来导入文件,该方法提供了四个重载方法

importExcel(String file, Class clazz)
传入文件路径和pojo

importExcel(File file, Class clazz, Map map)
传入文件路径、pojo和映射关系map

importExcel(InputStream is, Class clazz)
传入InputStream和pojo

importExcel(InputStream is, Class clazz, Map map)
传入InputStream、pojo和映射关系map