基本信息
源码名称:word转化为pdf
源码大小:2.80M
文件格式:.zip
开发语言:C#
更新时间:2016-01-26
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C#
C#
C#
C#
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.IO; using System.Text; using System.Threading; using Microsoft.Office.Interop.Word; namespace Word2Pdf { class Program { public static Microsoft.Office.Interop.Word.Document wordDocument { get; set; } public void Main(string strFolder_f) { string strFolder_t = null; //CheckFolder(strFolder_t); string strPdfFile = null; DirectoryInfo TheFolder = new DirectoryInfo(strFolder_f); Microsoft.Office.Interop.Word.Application appWord = new Microsoft.Office.Interop.Word.Application(); object paramMissing = Type.Missing; foreach (FileInfo NextFile in TheFolder.GetFiles()) { strPdfFile = Path.ChangeExtension(strFolder_f "\\" NextFile.Name, ".pdf"); wordDocument = appWord.Documents.Open(NextFile.FullName); if (wordDocument != null) { wordDocument.ExportAsFixedFormat(strPdfFile, WdExportFormat.wdExportFormatPDF); wordDocument.Close(ref paramMissing, ref paramMissing, ref paramMissing); wordDocument = null; } } if (appWord != null) { appWord.Quit(ref paramMissing, ref paramMissing, ref paramMissing); appWord = null; } //KillProcessByName("WINWORD"); GC.Collect(); GC.WaitForPendingFinalizers(); } static void CheckFolder(string strFolderPath) { if (Directory.Exists(strFolderPath)) { Directory.Delete(strFolderPath, true); Directory.CreateDirectory(strFolderPath); } else { Directory.CreateDirectory(strFolderPath); } } static void KillProcessByName(string name) { Process[] ps = Process.GetProcessesByName(name); foreach (Process p in ps) { if (p.ProcessName == name) p.Kill(); } } } }