您现在的位置是:首页 > 编程语言学习 > 前端编程语言 > 文章正文 前端编程语言

利用C#或者VB.NET实现Word和ODT文档相互转换

2022-05-10 14:45:43 前端编程语言

简介ODT文档格式一种开放文档格式(OpenDocument Text)。通常,ODT格式的文件可以使用LibreOffice Writer、MS Word或其他一些文档编辑器来打

ODT文档格式一种开放文档格式(OpenDocument Text)。通常,ODT格式的文件可以使用LibreOffice Writer、MS Word或其他一些文档编辑器来打开。我们在处理文档时,可通过格式转换的方式,将ODT转为其他格式,或者将其他格式转为ODT,来获取目标文档。本文,以C#及VB.NET代码展示ODT和Word文档之间相互转换的方法。

【程序环境】

本次测试时,在程序中引入Free Spire.Doc for .NET。可通过以下方法引用Spire.Doc.dll文件:

方法1:将 Free Spire.Doc for .NET 下载到本地,解压,安装。安装完成后,找到安装路径下BIN文件夹中的Spire.Doc.dll。然后在Visual Studio中打开“解决方案资源管理器”,鼠标右键点击“引用”,“添加引用”,将本地路径BIN文件夹下的dll文件添加引用至程序。

方法2:通过 NuGet 安装。可通过以下2种方法安装:

(1)可以在Visual Studio中打开“解决方案资源管理器”,鼠标右键点击“引用”,“管理NuGet包”,然后搜索“Free Spire.Doc”,点击“安装”。等待程序安装完成。

(2)将以下内容复制到PM控制台安装。

Install-Package FreeSpire.Doc -Version 10.2.0

【格式转换】

转换时,只需要操作三行代码来实现:

创建Document类的对象。

调用Document.LoadFromFile(string fileName)方法加载源文档。

通过Document.SaveToFile(string fileName, FileFormat fileFormat)方法保存为目标文件格式到指定路径。

1. Word转为ODT

C#
 

  1. using Spire.Doc; 
  2.  
  3. namespace WordtoODT 
  4.     class Program 
  5.     { 
  6.         static void Main(string[] args) 
  7.         { 
  8.             //创建Document类的对象 
  9.             Document document = new Document(); 
  10.  
  11.             //加载Word文档 
  12.             document.LoadFromFile("sample.docx"); 
  13.  
  14.             //保存为ODT格式 
  15.             document.SaveToFile("ToODT.odt", FileFormat.Odt); 
  16.         } 
  17.     } 

vb.net

  1. Imports Spire.Doc 
  2.  
  3. Namespace WordtoODT 
  4.     Class Program 
  5.         Private Shared Sub Main(args As String()) 
  6.             '创建Document类的对象 
  7.             Dim document As New Document() 
  8.  
  9.             '加载Word文档 
  10.             document.LoadFromFile("sample.docx"
  11.  
  12.             '保存为ODT格式 
  13.             document.SaveToFile("ToODT.odt", FileFormat.Odt) 
  14.         End Sub 
  15.     End Class 
  16. End Namespace 

2. ODT转为Word

C#

  1. using Spire.Doc; 
  2.  
  3. namespace ODTtoWord 
  4.     class Program 
  5.     { 
  6.         static void Main(string[] args) 
  7.         { 
  8.             //创建Document类的对象 
  9.             Document document = new Document(); 
  10.  
  11.             //加载ODT文档 
  12.             document.LoadFromFile("test.odt"); 
  13.  
  14.             //保存为Word格式 
  15.             document.SaveToFile("toWord.docx", FileFormat.Docx2013); 
  16.         } 
  17.     } 

vb.net

  1. Imports Spire.Doc 
  2.  
  3. Namespace ODTtoWord 
  4.     Class Program 
  5.         Private Shared Sub Main(args As String()) 
  6.             '创建Document类的对象 
  7.             Dim document As New Document() 
  8.  
  9.             '加载ODT文档 
  10.             document.LoadFromFile("test.odt"
  11.  
  12.             '保存为Word格式 
  13.             document.SaveToFile("toWord.docx", FileFormat.Docx2013) 
  14.         End Sub 
  15.     End Class 
  16. End Namespace 

注:测试代码中的文件路径为程序Debug路径,文件路径可自定义为其他路径。

相关文章

站点信息