zoukankan      html  css  js  c++  java
  • 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");

    }
    }
    }

  • 相关阅读:
    re模块
    collections模块
    hashlib模块
    序列号模块
    random模块
    sys模块
    OS模块
    工厂模式
    Go语言之直接选择排序
    Go语言之直接插入排序
  • 原文地址:https://www.cnblogs.com/jimmyLei/p/9934217.html
Copyright © 2011-2022 走看看