https://github.com/pjfanning/poi-gradle-example
A basic example demonstrating how to build and run a simple xlsx test using POI
https://github.com/pjfanning/poi-gradle-example
Last synced: about 2 months ago
JSON representation
A basic example demonstrating how to build and run a simple xlsx test using POI
- Host: GitHub
- URL: https://github.com/pjfanning/poi-gradle-example
- Owner: pjfanning
- License: apache-2.0
- Created: 2021-09-29T20:24:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-19T13:27:45.000Z (about 1 year ago)
- Last Synced: 2024-05-01T16:13:13.687Z (about 1 year ago)
- Language: Java
- Size: 335 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# poi-gradle-example
A basic example demonstrating how to use [Gradle](https://gradle.org/) to build and run a simple xlsx test using [POI](https://poi.apache.org/).To test with the provided `Sample-Sales-Data.xlsx`:
Mac/Linux
```
./gradlew run
```Windows
```
gradlew.bat run
```To provide your own file to be read - it is best to provide the full absolute file path:
Mac/Linux
```
./gradlew run --args=/path/my.xlsx
```Windows
```
gradlew.bat run --args=C:\path\my.xlsx
```To see the imported dependency jars:
Mac/Linux
```
./gradlew dependencies
```Windows
```
gradlew.bat dependencies
```