gpt4 book ai didi

c# - 如何提高从 OpenXml Excel 电子表格工具中的 SharedStringTable 检索值的性能?

转载 作者:太空宇宙 更新时间:2023-11-03 21:03:59 26 4
gpt4 key购买 nike

我正在使用 DocumentFormat.OpenXml 读取 Excel 电子表格。我有一个性能瓶颈,用于从 SharedStringTable 对象查找单元格值的代码(它似乎是某种单元格值的查找表):

var returnValue = sharedStringTablePart.SharedStringTable.ChildElements.GetItem(parsedValue).InnerText;

我创建了一个字典来确保我只检索一个值一次:

if (dictionary.ContainsKey(parsedValue))
{
return dictionary[parsedValue];
}

var fetchedValue = sharedStringTablePart.SharedStringTable.ChildElements.GetItem(parsedValue).InnerText;
dictionary.Add(parsedValue, fetchedValue);
return fetchedValue;

这将执行时间缩短了近 50%。然而,我的指标表明,从 SharedStringTable 对象获取值的代码行执行 123,951 次仍然需要 208 秒。有没有其他方法可以优化此操作?

最佳答案

我会一次性将整个共享字符串表读入您的字典,而不是根据需要查找每个值。这将允许您按顺序移动文件并存储值以供散列查找使用,这将比扫描 SST 以获取您需要的每个值更有效。

在您的流程开始时运行类似以下内容将允许您使用 dictionary[parsedValue] 访问每个值。

private static void LoadDictionary()
{
int i = 0;

foreach (var ss in sharedStringTablePart.SharedStringTable.ChildElements)
{
dictionary.Add(i++, ss.InnerText);
}
}

如果您的文件非常大,您可能会看到使用 SAX 方法而不是上面的 DOM 方法来读取文件的一些好处:

private static void LoadDictionarySax()
{
using (OpenXmlReader reader = OpenXmlReader.Create(sharedStringTablePart))
{
int i = 0;
while (reader.Read())
{
if (reader.ElementType == typeof(SharedStringItem))
{
SharedStringItem ssi = (SharedStringItem)reader.LoadCurrentElement();
dictionary.Add(i++, ssi.Text != null ? ssi.Text.Text : string.Empty);
}
}
}
}

在我的机器上,使用一个包含 60000 行和 2 列的文件,使用上面的 LoadDictionary 方法而不是您问题中的 GetValue 方法,速度大约快 300 倍。 LoadDictionarySax 方法提供了类似的性能,但在更大的文件(100000 行,10 列)上,SAX 方法比 LoadDictionary 方法快 25% 左右。在更大的文件(100000 行,26 列)上,LoadDictionary 方法抛出内存不足异常,但 LoadDictionarySax 正常运行。

关于c# - 如何提高从 OpenXml Excel 电子表格工具中的 SharedStringTable 检索值的性能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42508239/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com