Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eyedol/dbf-parser
Sample Implementation of jdbf parser
https://github.com/eyedol/dbf-parser
Last synced: about 5 hours ago
JSON representation
Sample Implementation of jdbf parser
- Host: GitHub
- URL: https://github.com/eyedol/dbf-parser
- Owner: eyedol
- License: mit
- Created: 2017-01-06T17:32:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-11-11T16:55:52.000Z (8 days ago)
- Last Synced: 2024-11-11T17:43:51.995Z (8 days ago)
- Language: Java
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### DbfParser
Reads in a .dbf file and parses into an object model
### Build the library into a `JAR` for use.
```
$ cd dbf-parser
$ ./gradlew clean build
```### Sample code
To run sample code:
Make sure you have the .dbf file named `stock.dbf` and is located in your home directory.
```
$ cd dbf-parser
$ ./gradlew runSample
```Credits: Makes use of the [jdbf](https://github.com/iryndin/jdbf) library