VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > temp > C#教程 >
  • C#/VB.NET 实现Word和ODT文档相互转换

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#

复制代码
using Spire.Doc;

namespace WordtoODT
{
    class Program
    {
        static void Main(string[] args)
        {
            //创建Document类的对象
            Document document = new Document();

            //加载Word文档
            document.LoadFromFile("sample.docx");

            //保存为ODT格式
            document.SaveToFile("ToODT.odt", FileFormat.Odt);
        }
    }
}
复制代码

vb.net

复制代码
Imports Spire.Doc

Namespace WordtoODT
    Class Program
        Private Shared Sub Main(args As String())
            '创建Document类的对象
            Dim document As New Document()

            '加载Word文档
            document.LoadFromFile("sample.docx")

            '保存为ODT格式
            document.SaveToFile("ToODT.odt", FileFormat.Odt)
        End Sub
    End Class
End Namespace
复制代码

2. ODT转为Word

C#

复制代码
using Spire.Doc;

namespace ODTtoWord
{
    class Program
    {
        static void Main(string[] args)
        {
            //创建Document类的对象
            Document document = new Document();

            //加载ODT文档
            document.LoadFromFile("test.odt");

            //保存为Word格式
            document.SaveToFile("toWord.docx", FileFormat.Docx2013);
        }
    }
}
复制代码

vb.net

复制代码
Imports Spire.Doc

Namespace ODTtoWord
    Class Program
        Private Shared Sub Main(args As String())
            '创建Document类的对象
            Dim document As New Document()

            '加载ODT文档
            document.LoadFromFile("test.odt")

            '保存为Word格式
            document.SaveToFile("toWord.docx", FileFormat.Docx2013)
        End Sub
    End Class
End Namespace
复制代码

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

 

原文链接:https://www.cnblogs.com/Yesi/p/16252626.html
 


相关教程