🌐
GitHub
github.com › apache › commons-csv › blob › master › src › main › java › org › apache › commons › csv › CSVRecord.java
commons-csv/src/main/java/org/apache/commons/csv/CSVRecord.java at master · apache/commons-csv
public final class CSVRecord implements Serializable, Iterable<String> { · private static final long serialVersionUID = 1L; · /** * The start position of this record as a character position in the source stream. This may or may not correspond to the byte position depending on the ·
Author   apache
🌐
GitHub
github.com › apache › commons-csv › blob › master › src › test › java › org › apache › commons › csv › CSVRecordTest.java
commons-csv/src/test/java/org/apache/commons/csv/CSVRecordTest.java at master · apache/commons-csv
import java.util.concurrent.atomic.AtomicInteger; · import org.apache.commons.lang3.StringUtils; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; · class CSVRecordTest { · private enum EnumFixture { UNKNOWN_COLUMN ·
Author   apache
🌐
GitHub
github.com › kana-ph › csv-viewer › blob › master › src-commons-csv › org › apache › commons › csv › CSVRecord.java
csv-viewer/src-commons-csv/org/apache/commons/csv/CSVRecord.java at master · kana-ph/csv-viewer
import java.util.Map.Entry; · · /** · * A CSV record parsed from a CSV file. · * · * @version $Id: CSVRecord.java 1727809 2016-01-31 13:08:33Z sebb $ · */ · public final class CSVRecord implements Serializable, Iterable<String> { · · private static final String[] EMPTY_STRING_ARRAY = new String[0]; ·
Author   kana-ph
🌐
GitHub
github.com › servalproject › ServalMaps › blob › master › src › org › apache › commons › csv › CSVRecord.java
ServalMaps/src/org/apache/commons/csv/CSVRecord.java at master · servalproject/ServalMaps
import java.util.Map; · /** * A CSV record · */ @SuppressWarnings("serial") public class CSVRecord implements Serializable, Iterable<String> { · private static final String[] EMPTY_STRING_ARRAY = new String[0]; · /** The values of the record */ private final String[] values; ·
Author   servalproject
🌐
GitHub
github.com › sujaybhowmick › csv-parser › blob › master › src › main › java › com › optimus › csv › parser › CSVRecord.java
csv-parser/src/main/java/com/optimus/csv/parser/CSVRecord.java at master · sujaybhowmick/csv-parser
import java.util.Map; · /** * Created with IntelliJ IDEA. * User: sujay · * Date: 1/12/14 · * Time: 10:10 AM · * To change this template use File | Settings | File Templates. */ public final class CSVRecord implements Serializable, Iterable<String> { private static final String[] EMPTY_STRING_ARRAY = new String[0]; ·
Author   sujaybhowmick
🌐
GitHub
github.com › apache › commons-csv › blob › master › src › test › java › org › apache › commons › csv › CSVPrinterTest.java
commons-csv/src/test/java/org/apache/commons/csv/CSVPrinterTest.java at master · apache/commons-csv
CSVRecord record = csvParser.nextRecord(); assertEquals("1", record.get(0)); assertEquals("r1", record.get(1)); assertEquals("long text 1", record.get(2)); assertEquals("YmluYXJ5IGRhdGEgMQ==", record.get(3)); // Row 2 ·
Author   apache
🌐
Castellanos70
castellanos70.github.io › StarvationEvasion › starvationevasion › sim › io › CSVReader.CSVRecord.html
CSVReader.CSVRecord
java.lang.Object · starvationevasion.sim.io.CSVReader.CSVRecord · Enclosing class: CSVReader · public static class CSVReader.CSVRecord extends java.lang.Object · The data structure for storing the parsed rows. equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait ·
Find elsewhere
🌐
GitHub
vmware.github.io › vsphere-automation-sdk-java › nsx › nsx-policy › com › vmware › nsx_policy › model › CsvRecord.html
CsvRecord (Java SDK for NSX Policy API 4.0.1.0.0)
java.lang.Object · com.vmware.nsx_policy.model.CsvRecord · All Implemented Interfaces: com.vmware.vapi.bindings.StaticStructure, com.vmware.vapi.bindings.Structure, java.io.Serializable · public final class CsvRecord extends java.lang.Object implements java.io.Serializable, com.vmware.vapi.bindings.StaticStructure ·
🌐
GitHub
github.com › osiegmar › FastCSV
GitHub - osiegmar/FastCSV: Fast, lightweight, and RFC 4180 compliant CSV library for Java. Zero dependencies, ~90 KiB. Trusted by Apache NiFi, JUnit, and Neo4j. · GitHub
Based on the Java CSV library benchmark suite. try (CsvWriter csv = CsvWriter.builder().build(Path.of("output.csv"))) { csv .writeRecord("header 1", "header 2") .writeRecord("value 1", "value 2"); } try (CsvReader<CsvRecord> csv = CsvReader.builder().ofCsvRecord(Path.of("input.csv"))) { csv.forEach(IO::println); }
Starred by 684 users
Forked by 106 users
Languages   Java
🌐
GitHub
github.com › apache › commons-csv › pull › 21 › files
CSV-215 CSV Record mutability by nmahendru · Pull Request #21 · apache/commons-csv
35 changes: 35 additions & 0 deletions 35 src/main/java/org/apache/commons/csv/CSVRecord.java
Author   apache
🌐
GitHub
github.com › breezedu › coursera_java › blob › master › Week03_FindColdestAndLowHumidityDay.java
coursera_java/Week03_FindColdestAndLowHumidityDay.java at master · breezedu/coursera_java
import java.io.File; import org.apache.commons.csv.CSVParser; import org.apache.commons.csv.CSVRecord; import edu.duke.DirectoryResource; import edu.duke.FileResource; public class Week03_FindColdestAndLowHumidityDay { //Part 1 · //This method returns the CSVRecord with the coldest temperature in the file and ·
Author   breezedu
🌐
CalliCoder
callicoder.com › java-read-write-csv-file-apache-commons-csv
Read / Write CSV files in Java using Apache Commons CSV | CalliCoder
February 18, 2022 - That’s all folks. In this article, We learned how to read and write CSV files in Java using Apache Commons CSV library. You can find all the code samples presented in this article in my github repository.
🌐
GitHub
github.com › osiegmar › FastCSV › blob › main › CHANGELOG.md
FastCSV/CHANGELOG.md at main · osiegmar/FastCSV
e5fff5a align with Java 17 · FieldModifiers.modify(Function<String, String>) to simply modify fields via functional interface · SimpleFieldModifier interface · FieldModifiers.lower and FieldModifiers.upper methods · Configuration of maximum fields, maximum field size, and maximum record size via record handler · Fluent configuration for CsvRecordHandler, NamedCsvRecordHandler, and StringArrayHandler ·
Author   osiegmar
🌐
GitHub
github.com › sigpwned › csv4j
GitHub - sigpwned/csv4j: Simple CSV reading and writing for Java 8+
CSV4J is a simple CSV reader and writer for Java 8 or later. Provide CSV reading and writing functionality compatible with both de-facto and official standards ... There are already many good libraries with CSV support available: Apache Commons ...
Author   sigpwned
🌐
GitHub
github.com › super-csv › super-csv
GitHub - super-csv/super-csv: A fast, programmer-friendly, free CSV library for Java · GitHub
A fast, programmer-friendly, free CSV library for Java - super-csv/super-csv
Starred by 528 users
Forked by 140 users
Languages   Java
🌐
GitHub
gist.github.com › djfdyuruiry › cf7abefb3a7dda0e2d2d5814bb5b6186
Multi-threaded CSV Reader/Writer for Java · GitHub
Multi-threaded CSV Reader/Writer for Java . GitHub Gist: instantly share code, notes, and snippets.
🌐
GitHub
github.com › cygri › opencsv › blob › master › src › main › java › com › opencsv › CSVReader.java
opencsv/src/main/java/com/opencsv/CSVReader.java at master · cygri/opencsv
Fork of OpenCSV for managing my contribution to the project - opencsv/src/main/java/com/opencsv/CSVReader.java at master · cygri/opencsv
Author   cygri