add config

This commit is contained in:
Looly 2022-03-14 23:16:25 +08:00
parent 911f75e6bd
commit 989f93652f
4 changed files with 22 additions and 8 deletions

View File

@ -13,6 +13,7 @@
* 【core 】 增加UniqueKeySetissue#I4WUWR@Gitee
* 【core 】 阿拉伯数字转换成中文对发票票面金额转换的扩展pr#570@Gitee
* 【core 】 ArrayUtil增加replace方法pr#570@Gitee
* 【core 】 CsvReadConfig增加自定义标题行行号issue#2180@Github
*
### 🐞Bug修复
* 【core 】 修复ObjectUtil.hasNull传入null返回true的问题pr#555@Gitee

View File

@ -177,7 +177,7 @@ public class CsvBaseReader implements Serializable {
final CsvParser csvParser = parse(reader);
final List<CsvRow> rows = new ArrayList<>();
read(csvParser, rows::add);
final List<String> header = config.containsHeader ? csvParser.getHeader() : null;
final List<String> header = config.headerLineNo > -1 ? csvParser.getHeader() : null;
return new CsvData(header, rows);
}

View File

@ -84,13 +84,13 @@ public final class CsvParser extends ComputeIter<CsvRow> implements Closeable, S
}
/**
* 获取头部字段列表如果containsHeader设置为false则抛出异常
* 获取头部字段列表如果headerLineNo &lt; 0抛出异常
*
* @return 头部列表
* @throws IllegalStateException 如果不解析头部或者没有调用nextRow()方法
*/
public List<String> getHeader() {
if (false == config.containsHeader) {
if (config.headerLineNo < 0) {
throw new IllegalStateException("No header available - header parsing is disabled");
}
if (lineNo < config.beginLineNo) {
@ -152,7 +152,7 @@ public final class CsvParser extends ComputeIter<CsvRow> implements Closeable, S
}
//初始化标题
if (config.containsHeader && null == header) {
if (lineNo == config.headerLineNo && null == header) {
initHeader(currentFields);
// 作为标题行后此行跳过下一行做为第一行
continue;

View File

@ -11,8 +11,8 @@ import java.io.Serializable;
public class CsvReadConfig extends CsvConfig<CsvReadConfig> implements Serializable {
private static final long serialVersionUID = 5396453565371560052L;
/** 是否首行做为标题行默认false */
protected boolean containsHeader;
/** 指定标题行号,-1表示无标题行 */
protected long headerLineNo = -1;
/** 是否跳过空白行默认true */
protected boolean skipEmptyRows = true;
/** 每行字段个数不同时是否抛出异常默认false */
@ -34,13 +34,26 @@ public class CsvReadConfig extends CsvConfig<CsvReadConfig> implements Serializa
}
/**
* 设置是否首行做为标题行默认false
* 设置是否首行做为标题行默认false<br>
* 当设置为{@code true}默认标题行号是{@link #beginLineNo}{@code false}-1表示无行号
*
* @param containsHeader 是否首行做为标题行默认false
* @return this
* @see #setHeaderLineNo(long)
*/
public CsvReadConfig setContainsHeader(boolean containsHeader) {
this.containsHeader = containsHeader;
return setHeaderLineNo(containsHeader ? beginLineNo : -1);
}
/**
* 设置标题行行号默认-1表示无标题行<br>
*
* @param headerLineNo 标题行行号-1表示无标题行
* @return this
* @since 5.7.23
*/
public CsvReadConfig setHeaderLineNo(long headerLineNo) {
this.headerLineNo = headerLineNo;
return this;
}