gpt4 book ai didi

c# - 从 Word 中获取 RTF

转载 作者:行者123 更新时间:2023-11-30 21:17:43 25 4
gpt4 key购买 nike

我有一个 Word 文档,想将内容包括格式导出为 RTF(或 html)。

        Word.Application wordApp = new Word.Application();
Word.Document currentDoc = wordApp.Documents.Open("file.docx");
currentDoc.SaveAs("file.rtf", Word.WdSaveFormat.wdFormatRTF);
currentDoc = wordApp.Documents.Open("file.rtf");
Word.Range range = currentDoc.Range();
String RTFText = range.Text;

我试过上面的代码,但我似乎只得到了文本,没有 hte 格式。

有什么想法吗?

最佳答案

如果您想阅读 rtf 代码,请尝试使用:

Word.Application wordApp = new Word.Application();
Word.Document currentDoc = wordApp.Documents.Open("file.docx");
currentDoc.SaveAs("file.rtf", Word.WdSaveFormat.wdFormatRTF);

然后像打开普通文本文件一样打开它:

string rtf = File.ReadAllText("file.rtf");

使用您的方法不起作用,因为您正在访问 Text 属性,因此 Word 只为您提供纯文本。

关于c# - 从 Word 中获取 RTF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4647018/

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