本文实例讲述了C#实现WPS文件转PDF格式的方法。分享给大家供大家参考,具体如下:
这里主要是采用C#将wps文件转为PDF。需要提前安装好WPS,并在程序中添加引用using Microsoft.Office.Interop.Word;
具体源码如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;
using Microsoft.Office.Interop.Word;
namespace JDOMS.WebAPI.Controllers.Zjn.Utils
{
class WpsToPdf : IDisposable
{
dynamic wps;
public WpsToPdf()
{
//创建wps实例,需提前安装wps
Type type = Type.GetTypeFromProgID( "KWps.Application" );
wps = Activator.CreateInstance(type);
}
/// <summary>
/// 根据文件在服务器上的路径下载文件
/// </summary>
/// <param name="wpsFilename">Wps文件路径</param>
/// <param name="pdfFilename">Pdf文件路径</param>
/// <returns></returns>
public void ToPdf( string wpsFilename, string pdfFilename = null )
{
if (wpsFilename == null )
{
throw new ArgumentNullException( "wpsFilename" );
}
if (pdfFilename == null )
{
pdfFilename = Path.ChangeExtension(wpsFilename, "pdf" );
}
Console.WriteLine( string .Format( @"正在转换 [{0}] -> [{1}]" , wpsFilename, pdfFilename));
//用wps 打开word不显示界面
dynamic doc = wps.Documents.Open(wpsFilename, Visible: false );
//doc 转pdf
doc.ExportAsFixedFormat(pdfFilename, WdExportFormat.wdExportFormatPDF);
doc.Close();
}
public void Dispose()
{
if (wps != null ) { wps.Quit(); }
}
}
}
|
希望本文所述对大家C#程序设计有所帮助。
原文链接:http://blog.csdn.net/jianyuerensheng/article/details/78190964