Guest User

Untitled

a guest
Dec 12th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. void importSpreadsheet(String path) throws IOException {
  2. ...
  3. InputStream ExcelFileToRead = new FileInputStream(path);
  4.  
  5. XSSFWorkbook wb = new XSSFWorkbook(ExcelFileToRead); // logger stops just above this line, no exception/error thrown
  6. ...}
Add Comment
Please, Sign In to add comment