How To Read Excel File Using Java
How To Read Excel File Using Java
Normally, to read a data in excel, first we should have access to workbook, sheet which we want to read as
workbook contains multiple sheets and if you want to read a particular cell we need location of a Cell.
In this article, we will discuss how to access workbook, sheet and a Cell using Jxl library. You can also consider
Apache Poi Library to perform read and write operations with excel sheets.
As we know JXL doesn't support Excel 2007 ".xlsx" file format. It only supports the old BIFF (binary) ".xls"
format. Where as Apache POI supports both Excel 2003 - xls and Excel 2007 - xlsx file formats.
To start with gaining access to Workbook, we should always remember the below command:
Now to get the access to the particular sheet, we should use the below command:
If you want to get the access to sheet2, you should specify as below:
Sheet sh = wb.getSheet(1);
You can also get the sheet access by sheet name, you should specify as below:
Sheet sh = wb.getSheet("sheet1");
System.out.println(sh.getCell(0,0).getContents());
package com.pack;
import java.io.FileInputStream;
import java.io.IOException;
import jxl.Sheet;
import jxl.Workbook;
import jxl.read.biff.BiffException;
Username password
testuser1 testpassword1
testuser2 testpassword2
testuser3 testpassword3
testuser4 testpassword4