2.获取表格中的资源id和操作方式数据主要方法如下:
public List<String> readXls(int rowNun)throw Exception{
String path="E:/新建 Microsoft Excel 97-2003 工作表.xls"
File file = new File(path);
InputStream is =new FileInputStream(
//默认第一个表格
HSSFSheet sheet = wb.getSheetAt(0);
HSSFRow row = sheet.getRow(rowNun);
int minColIx=row.getFirstCellNum();
int maxColIx=row.getLastCellNum();
List<String> result=new ArrayList<String>();
//过滤掉第一列和第二列数据
for(int collx=minColIx+2;collx<maxColIx;collx++){
HSSFCell cell=row.getCell(collx);
if(cell==null){
continue;
}
result.add(ExcelUtils.getStringVal(cell));
}
return result;
}
3.获取到数据后供uiautomator定位控件方法调用,接下来我们对获取的数据进行调用操作:
原文转自:https://segmentfault.com/a/1190000007494058