All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commons.box.util.CSVs Maven / Gradle / Ivy

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