https://github.com/rycus86/google-http-client-csv
ObjectParser implementation for Google HTTP Client library to parse objects from CSV files
https://github.com/rycus86/google-http-client-csv
Last synced: over 1 year ago
JSON representation
ObjectParser implementation for Google HTTP Client library to parse objects from CSV files
- Host: GitHub
- URL: https://github.com/rycus86/google-http-client-csv
- Owner: rycus86
- License: apache-2.0
- Created: 2015-05-12T05:54:38.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-05-15T20:11:57.000Z (about 9 years ago)
- Last Synced: 2025-01-23T18:16:08.658Z (over 1 year ago)
- Language: Java
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# google-http-client-csv
ObjectParser implementation for Google HTTP Client library to parse objects from CSV files.
### Usage:
```java
final HttpRequest request = ...;
request.setParser(new CsvParser());
final HttpResponse response = request.execute();
final Item[] items = response.parseAs(Item[].class);
```
### Maven setup:
```pom.xml
...
hu.rycus
google-http-client-csv
1.0.2
...
```