
commons.box.util.CSVs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-box-app Show documentation
Show all versions of commons-box-app Show documentation
Common utils for BOX projects.
The newest version!
package commons.box.util;
import commons.box.app.misc.CSV;
import org.apache.commons.csv.CSVFormat;
/**
* CSV解析工具类
*
* 需要额外依赖 compile("org.apache.commons:commons-csv:${version_commons_csv}")
*
创建作者:xingxiuyi
* 版权所属:xingxiuyi
*/
public final class CSVs {
private CSVs() {
}
// TODO 基于BUILDER的生成器
public static CSV excel() {
return new CSV(CSVFormat.EXCEL.withHeader());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy