GithubHelp home page GithubHelp logo

csv's Introduction

mneri/csv

mneri/csv is a fast and easy-to-use library to read and write CSV files.

Codacy Badge Language grade: Java Total alerts

Motivation

The code of most of the parsers you can find online is bloated and complicated. I wanted make a parser that was brief, clean and easy to understand. The algorithm of CsvReader is 30 lines of code.

Performances

It is fast. My preliminary tests show that the speed of CsvReader is comparable to the speed of uniVocity, one of the fastest csv parsers. I submitted a pull request to their benchmark, yet to be approved.

Memory consumption is also low. You can run mneri/csv on uniVocity benchmark with a 1MB JVM (-Xmx1m).

Example

To read a CSV file you use CsvReader class.

CsvReaderFactory factory = new DefaultCsvReaderFactory();

try (CsvReader<Person> reader = factory.open(new File("people.csv"), new PersonDeserializer())) {
    while (reader.hasNext()) {
        doSomething(reader.next());
    }
}

Where PersonDeserializer is:

public class PersonDeserializer implements CsvDeserializer<Person> {
    @Override
    public Person deserialize(RecyclableCsvLine line) {
        Person person = new Person();
        person.setFirstName(line.getString(0));
        person.setLastName(line.getString(1));
        return person;
    }
}

Writing to a csv file is easy, too.

CsvWriterFactory factory = new DefaultCsvWriterFactory();

try (CsvWriter<Person> writer = factory.open(new File("people.csv"), new PersonSerializer())) {
    for (Person person : persons) {
        writer.put(person);
    }
}

Where PersonSerializer is:

public class PersonSerializer implements CsvSerializer<Person> {
    @Override
    public void serialize(Person person, List<String> out) {
        out.add(person.getFirstName());
        out.add(person.getLastName());
    }
}

csv's People

Contributors

codacy-badger avatar mneri avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

gzougianos

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.