Skip to content

A framework based on Apache POI to smilpify the im- and export of excel files. This framework adds two Annotations to deklare the im- and exportable classes and their fields.

License

Nicklas2751/SimpleExcelImExporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SimpleExcelImExporter

A framework based on Apache POI to smilpify the im- and export of excel files. This framework adds two Annotations to deklare the im- and exportable classes and their fields.

Status / Additional informations

  • Gitter: Join the chat at https://gitter.im/Nicklas2751/SimpleExcelImExporter
  • Travis-ci: Build Status | Build Status Development
  • Sonarcloud: Quality Gate Status
  • JavaDoc: Javadocs

Maven Artifact

<dependency>
  <groupId>eu.wiegandt.nicklas</groupId>
  <artifactId>simpleexcelimexporter</artifactId>
  <version>1.2</version>
</dependency>

How to use

  1. Install the framework as libary.
  2. Let all classes which should be im-/exportet implement the interface "DataClass"
  3. Create a data controller for each data class
  • A class implementing the interface "DataController<[DataClass Type]>"
  1. Annotate all data classes for im-/export with @ExcelTable
  • The parameter "datacontroller" must get a class of a data controller for these class.
  • The parameter "mappingfile" is optional but if you fill it, it must be filled with a path to a mapping file for this data class.
    • You can use the Method "generateCleanMappingFile(String, String)" to generate a clean mapping file for your class.
  1. Annotate all fields which should be im-/exportable with @ExcelField
  • The parameter "exportable" has to be true if the field sould be exportable.
  • The parameter "importable" has to be true if the field sould be importable.
  • The optional parameter "required" field can be set to true if the, importable, field must exist when importing a excel table using this class.
  1. Create an "ExcelTableManager" for each class and add them to the ExcelImporter and ExcelExporter class.

You can find some example code in the src/test/java folders.

About

A framework based on Apache POI to smilpify the im- and export of excel files. This framework adds two Annotations to deklare the im- and exportable classes and their fields.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages