Uses of Class
cloud.opencode.base.csv.CsvConfig
Packages that use CsvConfig
Package
Description
CSV Streaming - Streaming CSV parsing and writing
CSV流 - 流式CSV解析和写入
-
Uses of CsvConfig in cloud.opencode.base.csv
Fields in cloud.opencode.base.csv declared as CsvConfigModifier and TypeFieldDescriptionstatic final CsvConfigCsvConfig.DEFAULTDefault configuration instance with RFC 4180 settings 使用RFC 4180设置的默认配置实例Methods in cloud.opencode.base.csv that return CsvConfigMethods in cloud.opencode.base.csv with parameters of type CsvConfigModifier and TypeMethodDescriptionstatic <T> List<T> Parses a CSV string and binds rows to objects with the specified configuration 使用指定配置解析CSV字符串并将行绑定到对象static <T> List<T> Parses a CSV file and binds rows to objects with the specified configuration 使用指定配置解析CSV文件并将行绑定到对象static StringOpenCsv.dump(CsvDocument doc, CsvConfig config) Formats a CSV document to a string with the specified configuration 使用指定配置将CSV文档格式化为字符串static <T> StringOpenCsv.dumpObjects(Collection<T> objects, Class<T> type, CsvConfig config) Converts objects to a CSV string with the specified configuration 使用指定配置将对象转换为CSV字符串Extracts headers from a CSV string with the specified configuration 使用指定配置从CSV字符串提取标题static CsvDocumentOpenCsv.parse(InputStream input, CsvConfig config) Parses CSV data from an input stream with the specified configuration 使用指定配置从输入流解析CSV数据static CsvDocumentParses CSV data from a reader with the specified configuration 使用指定配置从Reader解析CSV数据static CsvDocumentParses a CSV string into a document with the specified configuration 使用指定配置将CSV字符串解析为文档static CsvDocumentParses a CSV file with the specified configuration 使用指定配置解析CSV文件static CsvReaderOpenCsv.reader(InputStream input, CsvConfig config) Creates a streaming CSV reader from an input stream with configuration 使用配置从输入流创建流式CSV读取器static CsvReaderCreates a streaming CSV reader from a reader with configuration 使用配置从Reader创建流式CSV读取器static CsvReaderCreates a streaming CSV reader from a file with configuration 使用配置从文件创建流式CSV读取器static voidOpenCsv.write(CsvDocument doc, OutputStream output, CsvConfig config) Writes a CSV document to an output stream with the specified configuration 使用指定配置将CSV文档写入输出流static voidOpenCsv.write(CsvDocument doc, Writer writer, CsvConfig config) Writes a CSV document to a writer with the specified configuration 使用指定配置将CSV文档写入Writerstatic voidOpenCsv.writeFile(CsvDocument doc, Path file, CsvConfig config) Writes a CSV document to a file with the specified configuration 使用指定配置将CSV文档写入文件static CsvWriterOpenCsv.writer(OutputStream output, CsvConfig config) Creates a streaming CSV writer to an output stream with configuration 使用配置创建到输出流的流式CSV写入器static CsvWriterCreates a streaming CSV writer to a writer with configuration 使用配置创建到Writer的流式CSV写入器static CsvWriterCreates a streaming CSV writer to a file with configuration 使用配置创建到文件的流式CSV写入器 -
Uses of CsvConfig in cloud.opencode.base.csv.security
Methods in cloud.opencode.base.csv.security with parameters of type CsvConfigModifier and TypeMethodDescriptionstatic voidCsvSecurity.validateLimits(CsvConfig config, int rowCount, int columnCount, int fieldSize) Validates that the given counts do not exceed the configured limits 验证给定的计数不超过配置的限制 -
Uses of CsvConfig in cloud.opencode.base.csv.stream
Methods in cloud.opencode.base.csv.stream with parameters of type CsvConfigModifier and TypeMethodDescriptionstatic CsvReaderCsvReader.of(InputStream input, CsvConfig config) Creates a CsvReader from an InputStream.static CsvReaderCreates a CsvReader from a Reader.static CsvReaderCreates a CsvReader from a file Path.static CsvWriterCsvWriter.of(OutputStream output, CsvConfig config) Creates a CsvWriter from an OutputStream.static CsvWriterCreates a CsvWriter from a Writer.static CsvWriterCreates a CsvWriter from a file Path.Constructors in cloud.opencode.base.csv.stream with parameters of type CsvConfig