Aspose CheckCell 与 Aspose WorkSheet.Cell[r,c]
Aspose CheckCell vs Aspose WorkSheet.Cell[r,c]
我的 excel 有数百万条记录(约 1.1M),当我尝试使用 WorkSheet.Cells[row,cloumn] 逐个单元格读取时,速度非常慢。
如果我使用,WorkSheet.Cells.CheckCell(row, column) 性能非常好。
你能告诉我这两个 API 的区别吗
Worksheet.Cells.CheckCell() 是检查单元格是否存在的最正确方法。
如果单元格不存在,CheckCell 方法将不会实例化单元格。另一方面,如果单元格不存在,Cells[r, c] 将实例化单元格。
意思是,
CheckCell can return null or cell object.
But Cells[r, c] will never return null and will always return cell object.
因为 Cells[r, c] 总是 return 单元格对象,如果它不存在,它会创建它,这就是为什么,它会影响性能。如果您想迭代工作表中的所有现有单元格而不创建新单元格,请使用 Worksheet.Cells.GetEnumerator() 方法。
请参阅以下示例代码、其注释和控制台输出以供参考。
C#
//Create a workbook
Workbook wb = new Workbook();
//Access first worksheet
Worksheet ws = wb.Worksheets[0];
//At the moment, Cell B4 does not exist
//Therefore check cell will return null
Cell cell = ws.Cells.CheckCell(3, 1);
Console.WriteLine(cell == null); //<<<<<<<<<< It will print - True
//After this statement, cell B4 will be instantiated and it will exist
var o = ws.Cells[3, 1];
//Now check cell will not return null, but it will return cell B4
cell = ws.Cells.CheckCell(3, 1);
Console.WriteLine(cell == null);//<<<<<<<<<< It will print - False
控制台输出
True
False
更新 - 1
请查看以下示例代码、其注释和控制台输出。它说明了 GetEnumerator() 方法 returns non-empty 和空单元格。
C#
//Create a workbook
Workbook wb = new Workbook();
//Access first worksheet
Worksheet ws = wb.Worksheets[0];
//Create empty cells
//Cell A4, B6, C8 and D10 all are empty
var o = ws.Cells["A4"];
o = ws.Cells["B6"];
o = ws.Cells["C8"];
o = ws.Cells["D10"];
//Get cells enumerator
var i = ws.Cells.GetEnumerator();
//Iterate all cells
while(i.MoveNext())
{
Cell cell = i.Current as Cell;
//Print cell name
Debug.WriteLine(cell.Name);
}
控制台输出
A4
B6
C8
D10
注意:我在 Aspose 担任开发人员布道师
我的 excel 有数百万条记录(约 1.1M),当我尝试使用 WorkSheet.Cells[row,cloumn] 逐个单元格读取时,速度非常慢。
如果我使用,WorkSheet.Cells.CheckCell(row, column) 性能非常好。
你能告诉我这两个 API 的区别吗
Worksheet.Cells.CheckCell() 是检查单元格是否存在的最正确方法。
如果单元格不存在,CheckCell 方法将不会实例化单元格。另一方面,如果单元格不存在,Cells[r, c] 将实例化单元格。
意思是,
CheckCell can return null or cell object.
But Cells[r, c] will never return null and will always return cell object.
因为 Cells[r, c] 总是 return 单元格对象,如果它不存在,它会创建它,这就是为什么,它会影响性能。如果您想迭代工作表中的所有现有单元格而不创建新单元格,请使用 Worksheet.Cells.GetEnumerator() 方法。
请参阅以下示例代码、其注释和控制台输出以供参考。
C#
//Create a workbook
Workbook wb = new Workbook();
//Access first worksheet
Worksheet ws = wb.Worksheets[0];
//At the moment, Cell B4 does not exist
//Therefore check cell will return null
Cell cell = ws.Cells.CheckCell(3, 1);
Console.WriteLine(cell == null); //<<<<<<<<<< It will print - True
//After this statement, cell B4 will be instantiated and it will exist
var o = ws.Cells[3, 1];
//Now check cell will not return null, but it will return cell B4
cell = ws.Cells.CheckCell(3, 1);
Console.WriteLine(cell == null);//<<<<<<<<<< It will print - False
控制台输出
True
False
更新 - 1
请查看以下示例代码、其注释和控制台输出。它说明了 GetEnumerator() 方法 returns non-empty 和空单元格。
C#
//Create a workbook
Workbook wb = new Workbook();
//Access first worksheet
Worksheet ws = wb.Worksheets[0];
//Create empty cells
//Cell A4, B6, C8 and D10 all are empty
var o = ws.Cells["A4"];
o = ws.Cells["B6"];
o = ws.Cells["C8"];
o = ws.Cells["D10"];
//Get cells enumerator
var i = ws.Cells.GetEnumerator();
//Iterate all cells
while(i.MoveNext())
{
Cell cell = i.Current as Cell;
//Print cell name
Debug.WriteLine(cell.Name);
}
控制台输出
A4
B6
C8
D10
注意:我在 Aspose 担任开发人员布道师