Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ozlerhakan committed Nov 29, 2018
1 parent d53c025 commit 8651cd8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ Car car = cars.get(0);

=== Example 4

Consider you have the table like below:
Consider you have a table like below:

|===
5+|Class A 5+| Class B
Expand Down Expand Up @@ -409,7 +409,8 @@ Using the conventional way, we can retrieve the data using `Poiji.fromExcel`:

[source,java]
----
List<Classes> classes = Poiji.fromExcel(new File(excel), Classes.class);
PoijiOptions options = PoijiOptionsBuilder.settings().headerStart(1).build(); // header starts at 1 (zero-based).
List<Classes> classes = Poiji.fromExcel(new File(excel), Classes.class, options);
Classes firstRowClasses = actualClasses.get(0);
Expand Down

0 comments on commit 8651cd8

Please sign in to comment.