com.orion.office.excel.convert.ExcelConvert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orion-office Show documentation
Show all versions of orion-office Show documentation
orion office (excel csv and more...)
package com.orion.office.excel.convert;
import com.orion.office.csv.writer.CsvArrayWriter;
import com.orion.office.excel.convert.adapter.CsvAdapter;
import org.apache.poi.ss.usermodel.Sheet;
/**
* excel 转换器
*
* @author Jiahang Li
* @version 1.0.0
* @since 2020/9/18 1:54
*/
public class ExcelConvert {
private ExcelConvert() {
}
/**
* csv 适配器
*
* @param sheet excelSheet
* @param writer CsvArrayWriter
* @return adapter
*/
public static CsvAdapter csvAdapter(Sheet sheet, CsvArrayWriter writer) {
return new CsvAdapter(sheet, writer);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy