aspose excel GetCellIndex 索引超出空单元格的范围

aspose excel GetCellIndex index out of bounds for empty cells

我正在使用 Aspose Cells 从 excel 文件中获取数据 在每一行中我都有这样的数据

| Name | PhoneNumber | Email | Group

| Jack | +1456985    |    | Users

当我尝试使用此

从行中读取联系人时
((Row)currentContact).GetCellByIndex(2).StringValue

代码给我 "Users" 应该 returns " " 然后

((Row)currentContact).GetCellByIndex(3).StringValue

实际上应该 return "Users" 但是这一行抛出 IndexOutOfBoundException 。

aspose 似乎跳过了空单元格。 谁能帮我解决这个问题?

首先,请注意 Aspose.Cells API 的最新版本已经废弃了 Row.GetCellByIndex 方法,因此它将是很快就从 public API 中删除了。替代解决方案是 Row.GetEnumerator 方法。关于您最初的顾虑,Row.GetCellByIndex 和Row.GetEnumerator 方法都不会列出尚未初始化的单元格。换句话说,即使指定的单元格包含一个空字符串,它也会被正确读取,否则将被跳过。您可以使用 Row.GetCellOrNull 方法来测试单元格是否已初始化。如果您有更多问题,请随时在此处或 Aspose.Cells support forum 中与我们联系。

我在 Aspose 工作,担任开发人员推广员。