Difference between revisions of "SimpleGraph-Excel"
Jump to navigation
Jump to search
Line 15: | Line 15: | ||
= Mental Model = | = Mental Model = | ||
<uml> | <uml> | ||
+ | hide circle | ||
class Workbook { | class Workbook { | ||
name | name | ||
Line 24: | Line 25: | ||
rownumber | rownumber | ||
} | } | ||
− | class | + | class Cell { |
columnnumber | columnnumber | ||
value | value | ||
Line 31: | Line 32: | ||
Sheet "1" -> "title 1" Row | Sheet "1" -> "title 1" Row | ||
Sheet "1" -> "n" Row | Sheet "1" -> "n" Row | ||
− | Row "1" -> "n" | + | Row "1" -> "n" Cell |
</uml> | </uml> | ||
+ | |||
= Links = | = Links = | ||
* https://stackoverflow.com/questions/tagged/poi | * https://stackoverflow.com/questions/tagged/poi |
Revision as of 19:23, 27 February 2018
SimpleGraphModule
SimpleGraph Excel module
The SimpleGraph Excel module makes Microsoft Excel workbooks accessible via the Apache POI API see Apache POI XSSF/HSSF.
Sources
- System: ExcelSystem.java
- JUnit-Test: TestExcelSystem.java