You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-11Lines changed: 15 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,15 +22,15 @@ This library is available in [Maven Central](https://mvnrepository.com/artifact/
22
22
<dependency>
23
23
<groupId>io.github.millij</groupId>
24
24
<artifactId>poi-object-mapper</artifactId>
25
-
<version>2.1.0</version>
25
+
<version>3.0.0</version>
26
26
</dependency>
27
27
```
28
28
29
29
To install manually, please check the [releases](https://github.com/millij/poi-object-mapper/releases) page for available versions and change log.
30
30
31
31
#### Dependencies
32
32
33
-
The current implementation uses **POI version 4.1.2**.
33
+
The current implementation uses **POI version 5.2.5**.
34
34
35
35
36
36
## Usage
@@ -48,7 +48,7 @@ Consider the below sample spreadsheet, where data of employees is present.
48
48
49
49
##### Mapping Rows to a Java Bean
50
50
51
-
Create a java bean and map its properties to the columns using the `@SheetColumn` annotation. The `@SheetColumn` annotation can be declared on the `Field`, as well as its `Accessor Methods`. Pick any one of them to configure the mapped `Column` as per convenience.
51
+
Create a java bean and map its properties to the columns using the `@SheetColumn` annotation. The `@SheetColumn` annotation can be declared on the `Field`, as well as its `Accessor Methods`. Pick any one of them to configure the mapped `Column` as per convenience.
52
52
53
53
```java
54
54
@Sheet
@@ -68,34 +68,38 @@ public class Employee {
68
68
69
69
##### Reading Rows as Java Objects
70
70
71
-
Once a mapped Java Bean is ready, use a `Reader` to read the file rows as objects. Use `XlsReader` for `.xls` files and `XlsxReader` for `.xlsx` files.
71
+
Once a mapped Java Bean is ready, use a `Reader` to read the file rows as objects.
72
+
73
+
Use `XlsReader` for `.xls` files and `XlsxReader` for `.xlsx` files.
0 commit comments