从Excel中读取空白值并在脚本中使用它

时间:2015-06-25 06:52:36

标签: java webdriver

我正在执行以下步骤:

  1. 从Excel中读取值。
  2. 从Excel中读取后,在字段中传递值。
  3. (假设我的Excel工作表的A1值为'TestUserName'我在用户名字段中传递它。)

    但是目前如果单元格值为空,则抛出nullPointerException。怎么办呢?

    在这种情况下,假设我的A1值为空,如何处理这种情况。我没有使用arralist。

1 个答案:

答案 0 :(得分:1)

为什么不捕获NullPointerException以用空字符串替换它?

例如:

string username ;
try
{
    //Your code that fetches Excel cells contents
    username = fetchCell("A1"); //here it throws the exception if the cell is empty
}
catch(NullPointerException e)
{
    username = "";
}