FileCorruptedException

FileCorruptedException class

在文档加载期间,当文档似乎已损坏并且无法加载时抛出。

要了解更多信息,请访问使用文档编程文档文章。

public class FileCorruptedException : Exception

例子

演示如何捕获 FileCorruptedException。

try
{
    // 如果我们在尝试使用 Microsoft Word 打开文档时收到“无法读取内容”错误消息,
    // 当尝试使用 Aspose.Words 加载该文档时,我们很可能会抛出异常。
    Document doc = new Document(MyDir + "Corrupted document.docx");
}
catch (FileCorruptedException e)
{
    Console.WriteLine(e.Message);
}

也可以看看