Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
19 views

How To Read Excel File Using Java

The document discusses how to read data from an Excel file using the Jxl library in Java, including how to access the workbook and sheets, and then get cell contents by specifying cell coordinates or using loops to read multiple cells. It also notes that the Jxl library only supports the older .xls file format, while the Apache Poi library supports both .xls and .xlsx formats. Sample code is provided to demonstrate reading cell values from a sample Excel file and printing them out.

Uploaded by

Tarun Kumar
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views

How To Read Excel File Using Java

The document discusses how to read data from an Excel file using the Jxl library in Java, including how to access the workbook and sheets, and then get cell contents by specifying cell coordinates or using loops to read multiple cells. It also notes that the Jxl library only supports the older .xls file format, while the Apache Poi library supports both .xls and .xlsx formats. Sample code is provided to demonstrate reading cell values from a sample Excel file and printing them out.

Uploaded by

Tarun Kumar
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

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:

String FilePath = "d://filepath.xls";


FileInputStream fs = new FileInputStream(FilePath);
Workbook wb = Workbook.getWorkbook(fs);

Or You can also directly send the file as below

Workbook wb = Workbook.getWorkbook(new File("samplefile.xls"));

Now to get the access to the particular sheet, we should use the below command:

Sheet sh = wb.getSheet(0); // this is to get the access to Sheet1.

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");

Now we will get the content in particular location.

String CellGetContent = sh.getCell(0,0).getContents();


System.out.println(CellGetContent);

We can also write it as :

System.out.println(sh.getCell(0,0).getContents());

There is an other style to get the cell contents as below:

Cell Row0Col0 = sheet.getCell(0,0);


Cell Row1Col1 = sheet.getCell(1,1);
String FirstRowFirstColumn = Row0Col0.getContents();
String SecondRowSecondColumn = Row1Col1.getcontents();

The below is the input sheet for the example program:


Please find the below code in which we will read a data from excel sheet and print using for loop

package com.pack;

import java.io.FileInputStream;
import java.io.IOException;
import jxl.Sheet;
import jxl.Workbook;
import jxl.read.biff.BiffException;

public class ReadExcelFile {

public void readExcel() throws BiffException, IOException {


String FilePath = "D:\\sampledoc.xls";
FileInputStream fs = new FileInputStream(FilePath);
Workbook wb = Workbook.getWorkbook(fs);

// TO get the access to the sheet


Sheet sh = wb.getSheet("Sheet1");

// To get the number of rows present in sheet


int totalNoOfRows = sh.getRows();

// To get the number of columns present in sheet


int totalNoOfCols = sh.getColumns();

for (int row = 0; row < totalNoOfRows; row++) {

for (int col = 0; col < totalNoOfCols; col++) {


System.out.print(sh.getCell(col, row).getContents() + "\
t");
}
System.out.println();
}
}

public static void main(String args[]) throws BiffException, IOException {


ReadExcelFile DT = new ReadExcelFile();
DT.readExcel();
}
}

The output of the below program is:

Username password
testuser1 testpassword1
testuser2 testpassword2
testuser3 testpassword3
testuser4 testpassword4

You might also like