An open source csv parser for Java..
opencsv is a very simple csv (comma-separated values) parser library for Java. It was developed because all of current csv parsers I've come across don't have commercial-friendly licenses..
Here is the list of declaration for opencsv. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.sf.opencsv</groupId> <artifactId>opencsv</artifactId> <version>1.8</version> </dependency>
If you think this Maven repository POM file listing for opencsv is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The following table lists the most popular artifacts which are depending on opencsv-1.8. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Service | ads-lib 1.35.0 Java client library for accessing ads APIs including AdWords, DFA, and DFP. If you want to use this library, you must also include another Maven artifact to specify which framework you would like to use it with. For example, to use AdWords with Axis, you should include the "adwords-axis... | 5 |
Web Service | ads-lib 1.0.0 Java client library for accessing ads APIs including AdWords, DFA, and DFP. If you want to use this library, you must also include another Maven artifact to specify which framework you would like to use it with. For example, to use AdWords with Axis, you should include the "adwords-axis... | 5 |
Web Service | ads-lib 1.36.0 Java client library for accessing ads APIs including AdWords, DFA, and DFP. If you want to use this library, you must also include another Maven artifact to specify which framework you would like to use it with. For example, to use AdWords with Axis, you should include the "adwords-axis... | 5 |
Web Service | ads-lib 1.35.1 Java client library for accessing ads APIs including AdWords, DFA, and DFP. If you want to use this library, you must also include another Maven artifact to specify which framework you would like to use it with. For example, to use AdWords with Axis, you should include the "adwords-axis... | 5 |
The following packages are defined in the opencsv-1.8.jar
au.com.bytecode.opencsv au.com.bytecode.opencsv.bean
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>net.sf.opencsv</groupId> <artifactId>opencsv</artifactId> <version>1.8</version> <packaging>jar</packaging> <name>An open source csv parser for Java.</name> <url>http://opencsv.sourceforge.net/</url> <description>opencsv is a very simple csv (comma-separated values) parser library for Java. It was developed because all of current csv parsers I've come across don't have commercial-friendly licenses.</description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>svn://opencsv.svn.sourceforge.net/svnroot/opencsv</url> </scm> </project>