Package | Description |
---|---|
cn.hutool.core.text.csv |
提供CSV文件读写的封装,入口为CsvUtil
规范见:https://datatracker.ietf.org/doc/html/rfc4180 |
Modifier and Type | Method and Description |
---|---|
CsvData |
CsvReader.read()
读取CSV文件,此方法只能调用一次
调用此方法的前提是构造中传入文件路径或Reader |
CsvData |
CsvBaseReader.read(File file)
读取CSV文件,默认UTF-8编码
|
CsvData |
CsvBaseReader.read(File file,
Charset charset)
读取CSV文件
|
CsvData |
CsvBaseReader.read(Path path)
读取CSV文件,默认UTF-8编码
|
CsvData |
CsvBaseReader.read(Path path,
Charset charset)
读取CSV文件
|
CsvData |
CsvBaseReader.read(Reader reader)
从Reader中读取CSV数据,读取后关闭Reader
|
CsvData |
CsvBaseReader.read(Reader reader,
boolean close)
从Reader中读取CSV数据
|
CsvData |
CsvBaseReader.readFromStr(String csvStr)
从字符串中读取CSV数据
|
Modifier and Type | Method and Description |
---|---|
CsvWriter |
CsvWriter.write(CsvData csvData)
将一个 CsvData 集合写出到Writer
|
Copyright © 2024. All rights reserved.