Skip to content

Commit

Permalink
:
Browse files Browse the repository at this point in the history
  • Loading branch information
masumrazait committed Feb 3, 2024
1 parent 8308ed4 commit 37f88bc
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
Binary file added TestData/data.xlsx
Binary file not shown.
Binary file added bin/coding/FileReading.class
Binary file not shown.
16 changes: 16 additions & 0 deletions src/coding/FileReading.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package coding;

import java.io.FileInputStream;

public class FileReading {

public static void main(String[] args) {
String file="./TestData/data.xlsx";
FileInputStream fis= new FileInputStream(file);
XSSWorkbook workbook=new XSSWorkbook(fis);
XSSSheet sheet=workbook.getSheetAt(0)


}

}

0 comments on commit 37f88bc

Please sign in to comment.