我正在执行以下步骤:
(假设我的Excel工作表的A1值为'TestUserName'我在用户名字段中传递它。)
但是目前如果单元格值为空,则抛出nullPointerException
。怎么办呢?
在这种情况下,假设我的A1值为空,如何处理这种情况。我没有使用arralist。
答案 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 = "";
}