An open API service indexing awesome lists of open source software.

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

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

...

```