My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
CachedReaderExample  
This example shows how to create a cached reader.
Updated Mar 6, 2012 by skiron...@gmail.com

Build the cached reader

You can create a cached reader by calling the static factory method provided by the CSVReaderBuilder

CachedCSVReader<Person> cachedReader = CSVReaderBuilder.cached(personReader);

The cached reader now holds all read entries in memory. That allows very fast access to your data. It will be useful when you have to read your data multiple times.

Powered by Google Project Hosting