selenium java怎么取出excel内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium java怎么取出excel内容相关的知识,希望对你有一定的参考价值。
import java.io.File;import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import jxl.Sheet;
import jxl.Workbook;
/*
* 获取Excel文件的内容,使用Workbook方式来读取excel
*/
public class ExcelWorkBook
//利用list集合来存放数据,其类型为String
private List<string> list=new ArrayList</string><string>();
//通过Workbook方式来读取excel
Workbook book;
String username;
/*
* 获取excel文件第一列的值,这里取得值为username
*/
public List</string><string> readUsername(String sourceString) throws IOException,Exception
List</string><string> userList = new ArrayList</string><string>();
try
Workbook book =Workbook.getWorkbook(new File(sourceFile));
Sheet sheet=book.getSheet(0);
//获取文件的行数
int rows=sheet.getRows();
//获取文件的列数
int cols=sheet.getColumns();
//获取第一行的数据,一般第一行为属性值,所以这里可以忽略
String col1=sheet.getCell(0,0).getContents().trim();
String col2=sheet.getCell(1,0).getContents().trim();
System.out.println(col1+","+col2);
//把第一列的值放在userlist中
for(int z=1;z<rows ;z++)
String username=sheet.getCell(0,z).getContents();
userList.add(username);
catch (Exception e)
e.printStackTrace();
//把获取的值放回出去,方便调用
return userList;
/*
* 获取excel文件第二列的值,这里取得值为password
*/
public List<String> readPassword(String sourceString) throws IOException,Exception
List<string> passList = new ArrayList</string><string>();
try
Workbook book =Workbook.getWorkbook(new File(sourceFile));
Sheet sheet=book.getSheet(0);
int rows=sheet.getRows();
for(int z=1;z<rows ;z++)
String password=sheet.getCell(1,z).getContents();
passList.add(password);
catch (Exception e)
e.printStackTrace();
return passList;
public List<String> getList()
return list;
参考技术A http://www.cnblogs.com/liu-ke/p/4223807.html
以上是关于selenium java怎么取出excel内容的主要内容,如果未能解决你的问题,请参考以下文章