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

com.jchanghong.core.text.csv.CsvReader Maven / Gradle / Ivy

The newest version!
package com.jchanghong.core.text.csv;

import com.jchanghong.core.io.FileUtil;
import com.jchanghong.core.io.IORuntimeException;

import java.io.File;
import java.io.Reader;
import java.nio.charset.Charset;
import java.nio.file.Path;

/**
 * CSV文件读取器,参考:FastCSV
 *
 * @author Looly
 * @since 4.0.1
 */
public class CsvReader extends CsvBaseReader {
	private static final long serialVersionUID = 1L;

	private final Reader reader;

	//--------------------------------------------------------------------------------------------- Constructor start

	/**
	 * 构造,使用默认配置项
	 */
	public CsvReader() {
		this(null);
	}

	/**
	 * 构造
	 *
	 * @param config 配置项
	 */
	public CsvReader(CsvReadConfig config) {
		this((Reader) null, config);
	}

	/**
	 * 构造,默认{@link #DEFAULT_CHARSET}编码
	 *
	 * @param file   CSV文件路径,null表示不设置路径
	 * @param config 配置项,null表示默认配置
	 * @since 5.0.4
	 */
	public CsvReader(File file, CsvReadConfig config) {
		this(file, DEFAULT_CHARSET, config);
	}

	/**
	 * 构造,默认{@link #DEFAULT_CHARSET}编码
	 *
	 * @param path   CSV文件路径,null表示不设置路径
	 * @param config 配置项,null表示默认配置
	 * @since 5.0.4
	 */
	public CsvReader(Path path, CsvReadConfig config) {
		this(path, DEFAULT_CHARSET, config);
	}

	/**
	 * 构造
	 *
	 * @param file    CSV文件路径,null表示不设置路径
	 * @param charset 编码
	 * @param config  配置项,null表示默认配置
	 * @since 5.0.4
	 */
	public CsvReader(File file, Charset charset, CsvReadConfig config) {
		this(FileUtil.getReader(file, charset), config);
	}

	/**
	 * 构造
	 *
	 * @param path    CSV文件路径,null表示不设置路径
	 * @param charset 编码
	 * @param config  配置项,null表示默认配置
	 * @since 5.0.4
	 */
	public CsvReader(Path path, Charset charset, CsvReadConfig config) {
		this(FileUtil.getReader(path, charset), config);
	}

	/**
	 * 构造
	 *
	 * @param reader {@link Reader},null表示不设置默认reader
	 * @param config 配置项,null表示默认配置
	 * @since 5.0.4
	 */
	public CsvReader(Reader reader, CsvReadConfig config) {
		super(config);
		this.reader = reader;
	}
	//--------------------------------------------------------------------------------------------- Constructor end
	/**
	 * 读取CSV文件,此方法只能调用一次
* 调用此方法的前提是构造中传入文件路径或Reader * * @return {@link CsvData},包含数据列表和行信息 * @throws IORuntimeException IO异常 */ public CsvData read() throws IORuntimeException { return read(this.reader); } /** * 读取CSV数据,此方法只能调用一次
* 调用此方法的前提是构造中传入文件路径或Reader * * @param rowHandler 行处理器,用于一行一行的处理数据 * @throws IORuntimeException IO异常 * @since 5.0.4 */ public void read(CsvRowHandler rowHandler) throws IORuntimeException { read(this.reader, rowHandler); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy