User Ratings

★★★★★
★★★★
★★★
★★
38
3
0
0
3
ease 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 4 / 5
features 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 4 / 5
design 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 3 / 5
support 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 3 / 5

Rate This Project
Login To Rate This Project

User Reviews

  • Very good O.S. Software.
  • The best!!
  • very fast parser for large csv files
  • Very nice and helpful project! One suggestion: it would be very helpful that when failed to bind a bean ignore that line instead of failing the whole parsing. i will glad to denote this feature.
  • great software! :)
  • Best project I have ever seen! Perfect for my needs!
    3 users found this review helpful.
  • Amazing library! Thanks for you work
  • Nice little library, but I really wish quotes weren't mandatory in the writer. Until that's resolved I just can't use this. The Javadoc is a bit confusing, I guess it is out of sync with the current release, since it shows boolean flags to address that in writeNext() which don't appear to be available in the current release (2.3 I think). I'd also prefer a CSVWriter constructor argument flag to disable quotes for all calls to writeNext() rather than having to specify the preference on every write. IMO the "typical" case would not require quotes for every single value. Another nice thing (haven't thought about how it'd be implemented) would be a way to specify an auto-quote preference on specific columns. I will check the repo to see if there's a newer version which addresses some of this, but until some of these are addressed in the convenient release download I'm afraid I have to give this a "- 1/2" rounded down to -1. Will update with a new review if the quote issue gets fixed...
  • I wish to get it, will try today, thanks!
  • Great csv library! I'd like to add yet another request to release 2.4. I'd like to see the optional quoting and the CSVIterator available for use. Thanks!
  • Hi , I am looking for BeanToCSV , I have seen the 2.4 snapshot API but I cannot see any binaries/source that has BeanToCSV........ Could someone please guide me what should be done to use BeanToCSV. Thanks
  • @Arun: rating down a library because it didn't work perfectly with your code is *not* grounds for a thumbs-down. Open an issue or hit the mailing lists instead.
  • Got a Error while trying to use CSVtoBean class Caused by: java.lang.NullPointerException at au.com.bytecode.opencsv.bean.HeaderColumnNameMappingStrategy.createBean(Unknown Source) at au.com.bytecode.opencsv.bean.CsvToBean.processLine(Unknown Source) ... 2 more Testing Code: import java.io.FileNotFoundException; import java.io.FileReader; import java.util.List; import au.com.bytecode.opencsv.CSVReader; import au.com.bytecode.opencsv.bean.ColumnPositionMappingStrategy; import au.com.bytecode.opencsv.bean.CsvToBean; public class OpenCSVTest { /** * @param args * @throws FileNotFoundException */ public static void main(String[] args) throws FileNotFoundException { /* Offer is a simple POJO class */ ColumnPositionMappingStrategy<Offer> colStrt = new ColumnPositionMappingStrategy<Offer>(); CsvToBean<Offer> c2b = new CsvToBean<Offer>(); CSVReader reader = new CSVReader(new FileReader("C:/offer.csv")); List<Offer> offerList = c2b.parse(colStrt, reader); for (Offer offer: offerList) { System.out.println(offer.toString()); } } }
  • Great lib but I have a little problem. In the API doc there's a CSWriter constructor with a Charset class but in the CSWriter class included in the jar it doen't appear. Can you help me? Thanks a lot!
  • Small, fast and easy to integrate. This saves me so much time. Thank you!
  • Small, fast, and doesn’t require other JARs. :-)
  • Just works, thank you!
  • Works well with a clean API. Easily integrated via Maven.
  • Perfect for my needs! Saved my developers tons of time