-
wordtopdf转换
2011-12-25 22:47:59wordtopdf转换 -
批量word转pdf wordToPdf.zip
2020-07-03 16:09:13采用java awt简易的实现:指定文件夹中的word批量转换成pdf文件,需要office2010以上版本或者2007自带转pdf。解压之后运行wordToPdf.bat,然后选择文件夹即可。 -
UiPath之WordToPDF20190917.docx
2019-10-30 14:02:22前几天在手机上看到其他的文章,里面提到如何将Word转换为PDf,在UiPath的ManagePackage中,下载一个WordToPDF的包,我按照上面的方法试着做了一下,但是在转换的时候很不稳定,总是出现“RPC服务器不可用”,为了... -
office2007wordtopdf插件.rar
2009-12-25 13:05:28office2007wordtopdf插件office2007wordtopdf插件office2007wordtopdf插件office2007wordtopdf插件office2007wordtopdf插件office2007wordtopdf插件office2007wordtopdf插件office2007wordtopdf插件 -
wordToPdf需用到的部分工具
2013-02-18 14:15:29wordToPdf需用到的部分工具(jar包及代码) -
wordtopdf DOC转PDF工具
2010-05-06 18:53:04wordtopdf DOC转PDF word转pdf 图片转PDF -
WordToPDF.txt
2020-07-27 11:04:08word转PDF,java版的,安全高效,复制即可用,兼容了window、Linux两个系统的处理。 -
WordToPdf.zip
2020-07-10 10:57:41java调用Aspose使用线程异步实现word文档转pdf, 完美无水印,使用线程开启异步转换,不影响程序效率 -
wordtopdf.msi
2020-05-29 22:34:42word批量转pdf,可以同时将多个word分别转成pdf,软件下载之后双击运行即可安装,本款软件是免费的,无需登录。 -
WordToPdf.exe
2020-05-29 11:07:50word转pdf -
WORDtoPDF工具
2014-03-08 08:50:53我觉得挺好用的word转pdf工具。直接转档,目前不会有乱码。 -
wordtopdf.rar
2019-11-07 18:48:30Java技术将word转成pdf并可以添加水印。亲测可用。警告:请勿用于商业用途,仅供学习研究,如有任何版权纠纷,本人概不负责! -
wordToPdf.zip
2019-09-27 11:34:12java doc转pdf所有需要的jar包 -
WordToPDF.zip
2019-06-06 16:05:58工具用于word转pdf,简单方便,在windows下运行,直接使用exe调用指令就行! -
wordtopdf,文件格式转换工具
2009-04-10 14:04:09wordtopdf,word转PDF,很好用的 -
wordtopdf源码
2011-11-04 15:58:54批量将word文档转换成pdf文档示例,有兴趣可以下载下来看看 -
WordToPdf(openOffice实现,需要单独启动服务
2011-10-18 09:23:49WordToPdf(openOffice实现,需要单独启动服务) wor转pdf及其他格式文档 -
WordToPdf,word转pdf
2014-08-25 11:22:22public void WordToPdf() { // 创建一个新的Microsoft Word应用程序对象 Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application();
里面缺少的引用的下载地址:http://download.csdn.net/detail/u012394290/7814109public void WordToPdf() { // 创建一个新的Microsoft Word应用程序对象 Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application(); // C# doesn't have optional arguments so we'll need a dummy value object oMissing = System.Reflection.Missing.Value; // Get list of Word files in specified directory DirectoryInfo dirInfo = new DirectoryInfo(Server.MapPath("User_Word"));//我这里是文件夹路径 FileInfo[] wordFiles = dirInfo.GetFiles("*.doc");//获取文件夹下面的doc,你也可以指定某个word word.Visible = false; word.ScreenUpdating = false; foreach (FileInfo wordFile in wordFiles) { // Cast as Object for word Open method Object filename = (Object)wordFile.FullName; // Use the dummy value as a placeholder for optional arguments Microsoft.Office.Interop.Word.Document doc = word.Documents.Open(ref filename, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing); doc.Activate(); object outputFileName = wordFile.FullName.Replace(".doc", ".pdf"); object fileFormat = WdSaveFormat.wdFormatPDF; // Save document into PDF Format doc.SaveAs(ref outputFileName, ref fileFormat, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing); // Close the Word document, but leave the Word application open. // doc has to be cast to type _Document so that it will find the // correct Close method. object saveChanges = WdSaveOptions.wdDoNotSaveChanges; ((_Document)doc).Close(ref saveChanges, ref oMissing, ref oMissing); doc = null; } }
-
wordtopdf 格式转换工具 嵌入到Word中
2010-05-04 11:12:38转换格式的工具,但是没有注册, wordtopdf 格式转换工具 嵌入到Word中 -
wordToPdf的jar.rar
2020-07-02 15:03:11String licenseStr = "<License>\n" + " <Data>\n" + " <Products>\n" + " <Product>Aspose.Total for Java</Product>\n" + " <Product>Aspose.Words for Java</Product>\n" + " </Products>\n" ... -
万能PDF转换工具,pdfToWord,wordToPdf等 破解版
2011-04-17 16:28:18万能PDF转换工具,pdfToWord,wordToPdf等 破解版 -
wordtopdf.exe
2012-02-12 13:40:19word to pdf 把word专成pdf格式 -
wordtopdf 文本转pdf
2013-01-20 00:11:51非常好用的一款绿色免安装便携式工具。对学生来说放在u盘里很方便 -
【python util】wordTopdf
2021-01-09 08:44:07import os import comtypes.client def get_path(): # 获取当前运行路径 #path = os.getcwd() path="G:\\党岗位\\" # 获取所有文件名的列表 filename_list = os.listdir(path) # 获取所有word文件名列表 ...import os import comtypes.client def get_path(): # 获取当前运行路径 #path = os.getcwd() path="G:\\党岗位\\" # 获取所有文件名的列表 filename_list = os.listdir(path) # 获取所有word文件名列表 wordname_list = [filename for filename in filename_list \ if filename.endswith((".doc", ".docx"))] for wordname in wordname_list: # 分离word文件名称和后缀,转化为pdf名称 pdfname = os.path.splitext(wordname)[0] + '.pdf' # 如果当前word文件对应的pdf文件存在,则不转化 if pdfname in filename_list: continue # 拼接 路径和文件名 wordpath = os.path.join(path, wordname) pdfpath = os.path.join(path, pdfname) #生成器 yield wordpath,pdfpath def convert_word_to_pdf(): word = comtypes.client.CreateObject("Word.Application") word.Visible = 0 for wordpath,pdfpath in get_path(): newpdf = word.Documents.Open(wordpath) newpdf.SaveAs(pdfpath, FileFormat=17) newpdf.Close() # ppt转化为pdf # ppt = comtypes.client.CreateObject("Powerpoint.Application") # ppt.Visible = 1 # newpdf = ppt.Presentations.Open(in_file) # newpdf.SaveAs(out_file, FileFormat=32) # newpdf.Close() if __name__ == "__main__": convert_word_to_pdf()
-
WordToPDF,生成Excel数据表,生成饼状图表,生成折线图表,生成柱状图与折线图混合图表,通过代码生成图表
2012-08-29 15:02:211、WordToPDF,生成Excel数据表, 2、生成饼状图表,生成折线图表,生成柱状图与折线图混合图表, 3、通过代码生成图表 -
wordtopdf格式转换器
2010-05-09 13:23:04将Word格式转换为pdf格式,无需密码。绝对免费。与大家一起分享 -
openoffice wordTopdf异常
2012-03-22 22:16:16在word转换成pdf时出现这样的异常:[code="java"]com.artofsolving.jodconverter.openoffice.connection.OpenOfficeException: conversion failed: could not load input document[/... 求解释!!......在word转换成pdf时出现这样的异常:
com.artofsolving.jodconverter.openoffice.connection.OpenOfficeException: conversion failed: could not load input document
求解释!!!!!!!!!!!!!!!!!!
收藏数
117
精华内容
46