-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTest3.java
More file actions
27 lines (23 loc) · 777 Bytes
/
Test3.java
File metadata and controls
27 lines (23 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package dataDriven;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import org.apache.poi.EncryptedDocumentException;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.usermodel.WorkbookFactory;
import org.testng.annotations.Test;
public class Test3 {
@Test
public void tc1() throws EncryptedDocumentException, IOException {
FileInputStream fis=new FileInputStream("./data.xlsx");
Workbook wb = WorkbookFactory.create(fis);
Sheet sh = wb.getSheet("Sheet1");
Row row = sh.getRow(3);
short cellnum = row.getLastCellNum();
for(int i=0;i<cellnum;i++) {
System.out.println(row.getCell(i).getStringCellValue());
}
}
}