PDF转Word

Posted jimmylei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PDF转Word相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Spire.Pdf;


namespace KZT
{
class Program
{
static void Main(string[] args)
{

Console.WriteLine("开始转换.....");
PdfDocument doc = new PdfDocument();

doc.LoadFromFile(@"C:Usersqusu123Desktopconvert123.pdf");
Console.WriteLine("转换期间比较漫长请耐心等待.....");
doc.SaveToFile(@"C:Usersqusu123Desktopconvert123.docx", FileFormat.DOC);
Console.WriteLine("转换成功");
System.Diagnostics.Process.Start(@"C:Usersqusu123Desktopconvert123.docx");

}
}
}






























以上是关于PDF转Word的主要内容,如果未能解决你的问题,请参考以下文章

[pdf转word]PDF转Word 不会转?最优PDF转换成Word方法在这里

[word转pdf]Word怎么转换成PDF?这个Word转PDF方法一定不要错过

PDF转word后不能复制怎么办?

Word怎么转成pdf格式,word转pdf的小技巧

如何用纯java代码实现word转pdf

如何用纯java代码实现word转pdf?