GcExcel Java requires the following system requirements depending upon the framework you are using to create an application.
For OS versions supported in GcExcel Java, refer to System Requirements.
GcExcel Java API reference is available through Maven Central Repository, a directory that stores all the java archives (.jar files) and adds libraries, plugins and references to your project.
For installation of the product, refer to the following steps:
You can either download the GcExcel java package from Maven Central repository or download it locally on your machine from GrapeCity website.
Complete the following steps to install the GcExcel Java package (gcexcel-6.0.0.jar) and add dependency for GcExcel Java library in your application.
If you are creating an application :
You can install any Java IDE - Eclipse or IntelliJ as per your choice. Shared below are the steps to create a Java application using Eclipse IDE:
The following dependencies are also required, apart from gcexcel.jar:
Open the build.gradle and append the following script in the dependencies block:
compile("com.grapecity.documents:gcexcel:6.0.0") |
Open the pom.xml and add below xml element in the dependencies node.
<dependency> <groupId>com.grapecity.documents</groupId> <artifactId>gcexcel</artifactId> <version>6.0.0</version> </dependency> |
The jar file will be added as a library in the project and your project can now reference all classes of GcExcel in the jar file.