com.github.abel533.easyxls.EasyXls Maven / Gradle / Ivy
package com.github.abel533.easyxls;
import com.github.abel533.easyxls.bean.ExcelConfig;
import com.github.abel533.easyxls.common.XlsUtil;
import java.io.File;
import java.io.InputStream;
import java.util.List;
/**
* excel,对导入导出进行封装
*
* @author liuzh
*/
public class EasyXls {
/**
* 打开代码生成器,请在项目中执行,只有这样才能加载相应的类
*/
public static void openGenerater() {
XlsUtil.openGenerater();
}
/**
* 导入xls到List
*
* @param xmlPath xml完整路径
* @param xlsFile xls文件路径
* @return List对象
* @throws Exception
*/
public static List> xls2List(String xmlPath, File xlsFile) throws Exception {
return XlsUtil.xls2List(xmlPath, xlsFile);
}
/**
* 导入xls到List
*
* @param config 配置
* @param xlsFile xls文件路径
* @return List对象
* @throws Exception
*/
public static List> xls2List(ExcelConfig config, File xlsFile) throws Exception {
return XlsUtil.xls2List(config, xlsFile);
}
/**
* 导入xls到List
*
* @param xmlPath xml完整路径
* @param inputStream xls文件流
* @return List对象
* @throws Exception
*/
public static List> xls2List(String xmlPath, InputStream inputStream) throws Exception {
return XlsUtil.xls2List(xmlPath, inputStream);
}
/**
* 导入xls到List
*
* @param config 配置
* @param inputStream xls文件流
* @return List对象
* @throws Exception
*/
public static List> xls2List(ExcelConfig config, InputStream inputStream) throws Exception {
return XlsUtil.xls2List(config, inputStream);
}
/**
* 导出list对象到excel
*
* @param list 导出的list
* @param xmlPath xml完整路径
* @param filePath 保存xls路径
* @param fileName 保存xls文件名
* @return 处理结果,true成功,false失败
* @throws Exception
*/
public static boolean list2Xls(List> list, String xmlPath, String filePath, String fileName) throws Exception {
return XlsUtil.list2Xls(list, xmlPath, filePath, fileName);
}
/**
* 导出list对象到excel
*
* @param config 配置
* @param list 导出的list
* @param filePath 保存xls路径
* @param fileName 保存xls文件名
* @return 处理结果,true成功,false失败
* @throws Exception
*/
public static boolean list2Xls(ExcelConfig config, List> list, String filePath, String fileName) throws Exception {
return XlsUtil.list2Xls(config, list, filePath, fileName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy