之前也用过其他的一些方式,比如调工具。但那只能转部分格式
还用过Adobe Acrobat 8 Professional,但用java代码转格式的时候,这个软件会打开,造成速率较慢
最终的解决方案,放弃一切其他工具和软件,只用office自带的功能实现word,ppt,excel到pdf的转变
PS.你的office必须是07及以上,并且需要在文件另存为选项中有,“另存为pdf或XPS” 的一项
如果没有,你需要下载office相应插件SaveAsPDFandXPS
这里有个疑问,想问下大牛,希望大牛们不吝赐教,哞~~
安装完插件后在word的帮助里面,选搜索→点脱机开发人员帮助
再点 Word 2007 开发人员参考→新增内容→新的成员和常量→WdSaveFormat →wdFormatPDF
同样 在ppt里面,我也找得到对象ppt到pdf的常量
但在excel里面找了很长时间都没找到, 既然excel的文件另存为那里有“另存为pdf”,那就应该有这个常量啊。请大神们赐教啊
工程必备文件
需要jar包
jacob.jar
需要dll文件(放在system32下)
jacob-1.15-M4-x86.dll
好了,准备工作做完,废话不多说,我们代码揍起来
import java.io.File;
import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;
public class Word2Pdf {
static final int wdDoNotSaveChanges = 0;// 不保存待定的更改。
static final int wdFormatPDF = 17;// word转PDF 格式
static final int ppSaveAsPDF = 32;// ppt 转PDF 格式
public static void main(String[] args) {
String source1 = "D:\\test.doc";
String source2 = "D:\\a.xls";
String source3 = "D:\\aa.ppt";
String target1 = "D:\\test1.pdf";
String target2 = "D:\\test2.pdf";
String target3 = "D:\\test3.pdf";
Word2Pdf pdf = new Word2Pdf();
pdf.word2pdf(source1, target1);
pdf.excel2pdf(source2, target2);
pdf.ppt2pdf(source3, target3);
}
public void word2pdf(String source,String target){
System.out.println("启动Word");
long start = System.currentTimeMillis();
ActiveXComponent app = null;
try {
app = new ActiveXComponent("Word.Application");
app.setProperty("Visible", false);
Dispatch docs = app.getProperty("Documents").toDispatch();
System.out.println("打开文档" + source);
Dispatch doc = Dispatch.call(docs,//
"Open", //
source,// FileName
false,// ConfirmConversions
true // ReadOnly
).toDispatch();
System.out.println("转换文档到PDF " + target);
File tofile = new File(target);
if (tofile.exists()) {
tofile.delete();
}
Dispatch.call(doc,//
"SaveAs", //
target, // FileName
wdFormatPDF);
Dispatch.call(doc, "Close", false);
long end = System.currentTimeMillis();
System.out.println("转换完成..用时:" + (end - start) + "ms.");
} catch (Exception e) {
System.out.println("========Error:文档转换失败:" + e.getMessage());
} finally {
if (app != null)
app.invoke("Quit", wdDoNotSaveChanges);
}
}
public void ppt2pdf(String source,String target){
System.out.println("启动PPT");
long start = System.currentTimeMillis();
ActiveXComponent app = null;
try {
app = new ActiveXComponent("Powerpoint.Application");
Dispatch presentations = app.getProperty("Presentations").toDispatch();
System.out.println("打开文档" + source);
Dispatch presentation = Dispatch.call(presentations,//
"Open",
source,// FileName
true,// ReadOnly
true,// Untitled 指定文件是否有标题。
false // WithWindow 指定文件是否可见。
).toDispatch();
System.out.println("转换文档到PDF " + target);
File tofile = new File(target);
if (tofile.exists()) {
tofile.delete();
}
Dispatch.call(presentation,//
"SaveAs", //
target, // FileName
ppSaveAsPDF);
Dispatch.call(presentation, "Close");
long end = System.currentTimeMillis();
System.out.println("转换完成..用时:" + (end - start) + "ms.");
} catch (Exception e) {
System.out.println("========Error:文档转换失败:" + e.getMessage());
} finally {
if (app != null) app.invoke("Quit");
}
}
public void excel2pdf(String source, String target) {
System.out.println("启动Excel");
long start = System.currentTimeMillis();
ActiveXComponent app = new ActiveXComponent("Excel.Application"); // 启动excel(Excel.Application)
try {
app.setProperty("Visible", false);
Dispatch workbooks = app.getProperty("Workbooks").toDispatch();
System.out.println("打开文档" + source);
Dispatch workbook = Dispatch.invoke(workbooks, "Open", Dispatch.Method, new Object[]{source, new Variant(false),new Variant(false)}, new int[3]).toDispatch();
Dispatch.invoke(workbook, "SaveAs", Dispatch.Method, new Object[] {
target, new Variant(57), new Variant(false),
new Variant(57), new Variant(57), new Variant(false),
new Variant(true), new Variant(57), new Variant(true),
new Variant(true), new Variant(true) }, new int[1]);
Variant f = new Variant(false);
System.out.println("转换文档到PDF " + target);
Dispatch.call(workbook, "Close", f);
long end = System.currentTimeMillis();
System.out.println("转换完成..用时:" + (end - start) + "ms.");
} catch (Exception e) {
System.out.println("========Error:文档转换失败:" + e.getMessage());
}finally {
if (app != null){
app.invoke("Quit", new Variant[] {});
}
}
}
}
代码里面,命名很清楚,word2pdf,ppt2pdf,excel2pdf,不用解释是什么意思吧
按需求,大家各取所需。
PS.第一次在eye发帖,好紧张,好羞射
分享到:
相关推荐
办公自动化python将Word、Excel和PPT批量转成PDF文档,win32com操作word文档、Excel表格和PPT文档,WPS转为PDF文件。提高办公效率,快速阅读office文件,保护office文件格式和文件安全。
实现word excel ppt转为pdf,并提供转格式后删除原来的文件。(需要使用jcom)
本项目是一个基于Spring Boot框架实现的实用工具,用于将Microsoft Office的三种常见文件格式——Word(.docx)、Excel(.xlsx)和PowerPoint(.pptx)转换为PDF格式。这个小Demo提供了完整的功能,无需任何水印,...
需调用office组件,将word,ppt,excel转成pdf文件.
资源中包括工具类、jacob.jar和jacob-1.18-x64.dll(64位)、jacob-1.18-x86.dll(32位) 在使用jacob时,我们需要将jacob-1.18-x64.dll或jacob-1.18-x86.dll放到jdk的bin目录下或者jdk/jre的bin目录下才可以使用。
office格式转换 word,excel,ppt,html转pdf等,支持linux,无需安装任何其他依赖 基于命令行调用,本人用在了linux centos7 下的python项目里 windows例:OfficeToX.exe C:\\Users\\Administrator\\Desktop\\xxx.docx C:\...
本项目专注于将Microsoft Office的三种主要格式——Word(.doc或.docx)、Excel(.xls或.xlsx)和PowerPoint(.ppt或.pptx)转换为PDF格式。这有助于保持文档的一致性、防止格式更改,并方便跨平台查看。以下是对...
实现word、excel、PPT 转PDF文件功能。去插件水印,添加word、excel、pdf 文字与图片水印功能。执行转化方法前会分别先执行loadLicense()、getLicenseExcel()、getLicensePpt() 加载license.xml文件,不会出现插件...
标题中的“poi将word、PPT、Excel转pdf实现在线预览的jar包”涉及到的是Apache POI库在Java开发中的应用,以及如何利用它来处理Microsoft Office文档并转换为PDF格式,以便进行在线预览。Apache POI是Java平台上用于...
PDF多功能转换器 PDF转word,excel,ppt。可以转任何office格式
在Java编程环境中,将文档(如Excel、Word、PDF、PPT)转换为图片是一种常见的需求,这在处理大量文档预览、数据可视化或者移动设备兼容性问题时尤其有用。以下是一些关于如何使用Java实现这种转换的关键知识点: 1...
标题中的“Office2007 Word Excel PPT 转 PDF 插件”是指一种能够帮助用户将Microsoft Office 2007中的Word文档、Excel表格和PowerPoint演示文稿转换为PDF(Portable Document Format)格式的软件工具。PDF是一种...
"Word、Excel、PPT、PDF在线预览解决方案" 提供了一种高效便捷的方式,让用户无需下载文件即可查看各种类型的文档,提高了用户体验,同时也保障了数据安全。下面我们将详细探讨这些文档格式的在线预览技术。 首先,...
本主题主要聚焦于使用C++编程语言将Microsoft Office的Word、Excel和PowerPoint文件转换为PDF格式。以下是对这个主题的详细阐述: 1. **C++编程语言**:C++是一种静态类型的、编译式的、通用的、大小写敏感的、不仅...
文件Tools工具 支持WORD/PDF/Excel/PDF等格式的转换软件 支持功能 Word转PDF WORD转EXCEL WORD转EPUB PDF转WORD PDF转EXCEL PDF转PPT PDF版本转换 EXCEL转PDF EXCEL转WORD PDF转EXCEL EPUB转WORD EPUB...
本文将详细探讨如何使用PHP实现Office文档(包括Word、PPT和Excel)转换为PDF,并进一步转化为SWF文件,同时添加水印功能,以实现安全的在线预览。 首先,我们需要了解PHP在处理文件转换时常用的一些库和工具。在本...
- **PDF转Excel**:Aspose.Cells提供将PDF中的表格内容导出到Excel的功能,便于数据分析。 - **PDF转PPT**:Aspose.Slides允许将PDF文档转换为PowerPoint格式,方便进行演示。 - **PDF转HTML**:Aspose.Words和...
aspose-ppt2pdf,excel2pdf,word2pdfaspose-ppt2pdf,excel2pdf,word2pdfaspose-ppt2pdf,excel2pdf,word2pdfaspose-ppt2pdf,excel2pdf,word2pdfaspose-ppt2pdf,excel2pdf,word2pdfaspose-ppt2pdf,excel2pdf,word2...