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: src/main/java/io/github/mbenincasa/javaexcelutils/tools/Converter.java
+76Lines changed: 76 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -605,6 +605,7 @@ public static Map<String, Stream<?>> excelStreamToObjects(InputStream inputStrea
605
605
/**
606
606
* Convert an Excel file into a CSV file<p>
607
607
* The default path is that of the temporary folder. By default, the first sheet is chosen and the filename will be the same as the input file if not specified
608
+
* @deprecated since version 0.4.0
608
609
* @param fileInput The input Excel file that will be converted into a CSV file
609
610
* @return A CSV file that contains the same lines as the Excel file
610
611
* @throws FileAlreadyExistsException If the destination file already exists
@@ -613,13 +614,15 @@ public static Map<String, Stream<?>> excelStreamToObjects(InputStream inputStrea
613
614
* @throws ExtensionNotValidException If the input file extension does not belong to an Excel file
614
615
* @throws IOException If an I/O error has occurred
* The default path is that of the temporary folder. By default, the first sheet is chosen and the filename will be the same as the input file if not specified
625
+
* @deprecated since version 0.4.0
623
626
* @param fileInput The input Excel file that will be converted into a CSV file
624
627
* @param sheetName The name of the sheet to open
625
628
* @return A CSV file that contains the same lines as the Excel file
* The default path is that of the temporary folder. By default, the filename will be the same as the input file if not specified and the extension is XLSX
0 commit comments