Advertisement
Guest User

Untitled

a guest
Jan 17th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public static void main(String[] args) throws Exception {
  2. List<List<String>> table = readFromExcelFile("exel.xlsx");
  3. for (List<String> row : table) {
  4. for (String cell : row) {
  5. System.out.print(cell + " ");
  6. }
  7. System.out.println();
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement