我正在尝试从excel文件中读取数据。当我运行下面的代码时,它运行没有任何错误,但没有给出任何数据。当我检查代码时,我发现全局变量rownum没有初始化并给出默认值为0.但是在getData(int i)方法中,rownum给出的值为14。 我试图通过使用getData(int i)方法获取excel文件中的所有字符串数据,然后尝试将它们存储在data []数组中。再次在setData方法中,我试图将data []数组中存储的所有项复制到字符串值。 谁能请帮忙。我是java的新手。 包com.selenium;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
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;
@SuppressWarnings("unused")
public class DataFromExcel {
String[] data = new String[15];
static int rownum;
public String[] getData(int i) throws InvalidFormatException, IOException{
File file = new File("C:\\Users\\Admin\\Desktop\\ScreenShot\\Excel.xls");
FileInputStream input = new FileInputStream(file);
Workbook excel = WorkbookFactory.create(input);
Sheet sheet = excel.getSheet("Data");
rownum = sheet.getLastRowNum();
System.out.println(rownum);
for(int j=1;j<=rownum;j++){
Row row = sheet.getRow(rownum);
while(row != null){
if(row.getCell(j) != null){
String cell = row.getCell(j).getStringCellValue();
while(cell != null){
data[j]=cell;
System.out.println(data[1]);
}//while cell
}//if row
}//for
}//row while
return data;
}//getData
public String setData(int i){
String value = null;
for(i=1; i<=data.length;i++){
value =data[i];
}//for setData
return value;
}//setData
public static void main(String[] args) throws InvalidFormatException, IOException{
DataFromExcel get = new DataFromExcel();
System.out.println(rownum);
get.getData(1);
if(get.data != null){
System.out.println(get.setData(1));}
}//main
}// DataFromExcel
答案 0 :(得分:0)
你已经知道(我希望如此),程序的执行是从main()
方法开始的。现在,当你调用getData(int i)
方法时,然后是那一点rownum
为零(显然没有代码正在修改它),但此后你用参数调用getData(int i)
,然后根据其中给出的指令改变rownum的值,尝试添加另一个{{ 1}}作为System.out.prinltn()
方法的结束行并打印main()