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: CHANGELOG.MD
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,18 @@
1
+
# v0.4.0
2
+
### Deprecations
3
+
* All methods of the Converter class up to version 0.2.1 have been deprecated
4
+
### Features
5
+
* There are new methods that convert Excel <-> POJOs and Excel <-> CSV. Besides conversion between files, conversions between streams and byte arrays are now available. Data is no longer returned in a List but in a Stream
6
+
* Excel <-> Json conversion is now available
7
+
* The writeAndClose method is available in ExcelWorkbook
8
+
* ExcelCell provides new ways to read a cell.
9
+
### Fixes
10
+
* The error is handled better when trying to create a Sheet already present in the Workbook
11
+
* The readCell(Class<?> type) method did not always return the requested type
12
+
### Removed
13
+
* The WorkbookUtility and SheetUtility classes have been removed
14
+
* Several ExcelUtility methods have been removed
15
+
1
16
# v0.3.0
2
17
### Deprecations
3
18
* The WorkbookUtility and SheetUtility classes have been deprecated
Copy file name to clipboardExpand all lines: README.md
+29-3Lines changed: 29 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@ At any time you can retrieve the associated Apache POI components.
26
26
27
27
```
28
28
public void toPOI() {
29
+
// Initialize the components
29
30
Workbook workbook = excelWorkbook.getWorkbook();
30
31
Sheet sheet = excelSheet.getSheet();
31
32
Row row = excelRow.getRow();
@@ -36,9 +37,34 @@ public void toPOI() {
36
37
One of the main features of the library is to be able to perform conversions. The **Converter** class has methods that convert **Excel <-> POJOs** and **Excel <-> CSV**.<br>
0 commit comments