gpt4 book ai didi

c# - word文档(.doc/.docx)在用户上传后如何统计字数?

转载 作者:行者123 更新时间:2023-11-30 18:25:50 26 4
gpt4 key购买 nike

我想计算上传到我的应用程序的文档中的字数。我不想使用 Microsoft.Office.Interop.Word dll,因为我无法访问我的服务器来安装 Word 应用程序。

完成此任务的最简单方法是什么?

最佳答案

使用 OpenXML SDK ,下面的代码应该可以工作:

int words;
using (var document = WordprocessingDocument.Open(fileName, false))
{
words = (int) document.ExtendedFilePropertiesPart.Properties.Words.Text;
}

另见 https://msdn.microsoft.com/en-us/library/office/documentformat.openxml.extendedproperties.properties.aspx

关于c# - word文档(.doc/.docx)在用户上传后如何统计字数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29586919/

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