java jacob liunx_Java利用jacob实现文档格式转换

该博客展示了如何在Java中使用Jacob库将Office文档(Word、Excel、PPT)转换为PDF格式。通过创建ActiveXComponent并调用相应的Open和SaveAs方法,可以实现不同文档类型的转换。在转换过程中,应用程序保持不可见以避免显示用户界面。
摘要由CSDN通过智能技术生成

public class Word2Pdf {

/*将office word文档转换为PDF*/

public void word2PDF(String inputFile,String pdfFile){

//打开word应用程序

ActiveXComponent app = new ActiveXComponent("Word.Application");

try {

//设置word不可见,否则会弹出word界面

app.setProperty("Visible", new Variant(false));

//获得word中所有打开的文档,返回Documents对象

Dispatch docs = app.getProperty("Documents").toDispatch();

//调用Documents对象中Open方法打开文档,并返回打开的文档对象Document

Dispatch doc = Dispatch.call(docs, "Open", inputFile).toDispatch();

//调用Document对象的SaveAs方法,将文档保存为pdf格式

Dispatch.call(doc,

"SaveAs",

new Variant(pdfFile),

17 //word保存为pdf格式

);

//关闭文档

Dispatch.call(doc, "Close",true);

//关闭word应用程序

app.invoke("Quit");

} catch (Exception e) {

System.out.println(e.getMessage());

app.invoke("Quit");

}

}

/*将office excel文档转换为PDF*/

public void excel2PDF(String inputFile,String pdfFile){

//打开excel应用程序

ActiveXComponent app = new ActiveXComponent("Excel.Application");

try {

//设置excel不可见,否则会弹出word界面

app.setProperty("Visible", false);

//获得excel中所有打开的文档,返回Workbooks对象

Dispatch excels = app.getProperty("Workbooks").toDispatch();

//调用Workbooks对象中Open方法打开文档,并返回打开的文档对象excel

Dispatch excel = Dispatch.call(excels, "Open", inputFile, false, true).toDispatch();

//调用excel对象的SaveAs方法,将文档保存为pdf格式

Dispatch.call(excel,

"ExportAsFixedFormat",

0, //excel保存为pdf格式

pdfFile

);

//关闭文档

Dispatch.call(excel, "Close",true);

//关闭excel应用程序

app.invoke("Quit");

} catch (Exception e) {

System.out.println(e.getMessage());

app.invoke("Quit");

}

}

/*将office ppt文档转换为PDF*/

public void ppt2PDF(String inputFile,String pdfFile){

//打开ppt应用程序

ActiveXComponent app = new ActiveXComponent("PowerPoint.Application");

try {

//设置ppt不可见,否则会弹出ppt界面

/*app.setProperty("Visible", new Variant(false));*/

//获得ppt中所有打开的文档,返回ppts对象

Dispatch ppts = app.getProperty("Presentations").toDispatch();

//调用ppts对象中Open方法打开文档,并返回打开的文档对象ppt

Dispatch ppt = Dispatch.call(ppts, "Open", inputFile,

true,// ReadOnly

true,// Untitled指定文件是否有标题

false// WithWindow指定文件是否可见

).toDispatch();

//调用ppt对象的SaveAs方法,将文档保存为pdf格式

Dispatch.call(ppt,

"SaveAs",

/*"ExportAsFixedFormat",*/

pdfFile,

32 //ppt保存为pdf格式

);

//关闭文档

Dispatch.call(ppt, "Close",true);

//关闭ppt应用程序

app.invoke("Quit");

} catch (Exception e) {

System.out.println(e.getMessage());

app.invoke("Quit");

}

}

public static void main(String[] args) throws Exception {

Word2Pdf word2Pdf = new Word2Pdf();

/*word2Pdf.word2PDF("D:/test/#6测试文档.docx", "D:/test/#6测试文档");*/

/*word2Pdf.excel2PDF("D:/test/燃机控制油系统巡检卡.xlsx", "D:/test/燃机控制油系统巡检卡");*/

/*word2Pdf.ppt2PDF("D:/test/设计.pptx", "D:/test/设计.pdf");*/

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值