Uses of Class
cloud.opencode.base.csv.CsvConfig.Builder
Packages that use CsvConfig.Builder
-
Uses of CsvConfig.Builder in cloud.opencode.base.csv
Methods in cloud.opencode.base.csv that return CsvConfig.BuilderModifier and TypeMethodDescriptionstatic CsvConfig.BuilderCsvConfig.builder()Creates a new builder 创建新的构建器Sets the character set 设置字符集static CsvConfig.BuilderOpenCsv.config()Creates a new CSV configuration builder 创建新的CSV配置构建器CsvConfig.Builder.delimiter(char delimiter) Sets the field delimiter 设置字段分隔符CsvConfig.Builder.escapeChar(char escapeChar) Sets the escape character 设置转义字符CsvConfig.Builder.formulaProtection(boolean formulaProtection) Sets whether formula injection protection is enabled 设置是否启用公式注入保护CsvConfig.Builder.hasHeader(boolean hasHeader) Sets whether the CSV has a header row 设置CSV是否有标题行CsvConfig.Builder.lineSeparator(String lineSeparator) Sets the line separator 设置行分隔符CsvConfig.Builder.maxColumns(int maxColumns) Sets the maximum number of columns 设置最大列数CsvConfig.Builder.maxFieldSize(int maxFieldSize) Sets the maximum field size in bytes 设置最大字段大小(字节)CsvConfig.Builder.maxRows(int maxRows) Sets the maximum number of rows 设置最大行数CsvConfig.Builder.nullString(String nullString) Sets the string to write for null values 设置null值的写入字符串CsvConfig.Builder.quoteChar(char quoteChar) Sets the quote character 设置引用字符CsvConfig.Builder.skipEmptyRows(boolean skipEmptyRows) Sets whether empty rows should be skipped 设置是否跳过空行CsvConfig.Builder.trimFields(boolean trimFields) Sets whether fields should be trimmed 设置是否修剪字段