Java利用jacob实现文档格式转换

时间:2021-07-03 06:15:39

     实现文档格式之间的转换,我使用的是jacob-1.7版本,需要jacob.jar来调用activex控件,本机需安装WPS/office,还需要jacob.jar以及jacob.dll 

其中:
    jacob.dll 需要放置在系统system32下,如果系统是c盘:C://windows/system32/下面 

    jacob.dll放在类似这样的目录下,D:\Java\jre1.8.0_31\bin

public class PDFUtil {
private static final int wdFormatPDF = 17;
private static final int xlTypePDF = 0;
private static final int ppSaveAsPDF = 32;

public static void main(String[] args) {
PDFUtil.word2PDF("D:/20161202184309.doc", "D:/20161202184309.pdf");
System.out.println("转换完成!");
}
public boolean convert2PDF(String inputFile, String pdfFile) {
String suffix = getFileSufix(inputFile);
File file = new File(inputFile);
if (!file.exists()) {
return false;
}
if (suffix.equals("pdf")) {
return false;
}
if (suffix.equals("doc") || suffix.equals("docx")
|| suffix.equals("txt")) {
return word2PDF(inputFile, pdfFile);
} else if (suffix.equals("ppt") || suffix.equals("pptx")) {
return ppt2PDF(inputFile, pdfFile);
} else if (suffix.equals("xls") || suffix.equals("xlsx")) {
return excel2PDF(inputFile, pdfFile);
} else {
return false;
}
}
public static String getFileSufix(String fileName) {
int splitIndex = fileName.lastIndexOf(".");
return fileName.substring(splitIndex + 1);
}
// word转换为pdf
public static boolean word2PDF(String inputFile, String pdfFile) {
try {
// 打开word应用程序
ActiveXComponent app = new ActiveXComponent("Word.Application");
// 设置word不可见
app.setProperty("Visible", false);
// 获得word中所有打开的文档,返回Documents对象
Dispatch docs = app.getProperty("Documents").toDispatch();
// 调用Documents对象中Open方法打开文档,并返回打开的文档对象Document
Dispatch doc = Dispatch.call(docs, "Open", inputFile, false, true)
.toDispatch();
// 调用Document对象的SaveAs方法,将文档保存为pdf格式
/*
* Dispatch.call(doc, "SaveAs", pdfFile, wdFormatPDF
* //word保存为pdf格式宏,值为17 );
*/
Dispatch.call(doc, "ExportAsFixedFormat", pdfFile, wdFormatPDF);// word保存为pdf格式宏,值为17
// 关闭文档
Dispatch.call(doc, "Close", false);
// 关闭word应用程序
app.invoke("Quit", 0);
return true;
} catch (Exception e) {
return false;
}
}
// excel转换为pdf
public static boolean excel2PDF(String inputFile, String pdfFile) {
try {
ActiveXComponent app = new ActiveXComponent("Excel.Application");
app.setProperty("Visible", false);
Dispatch excels = app.getProperty("Workbooks").toDispatch();
Dispatch excel = Dispatch.call(excels, "Open", inputFile, false,
true).toDispatch();
Dispatch.call(excel, "ExportAsFixedFormat", xlTypePDF, pdfFile);
Dispatch.call(excel, "Close", false);
app.invoke("Quit");
return true;
} catch (Exception e) {
return false;
}
}
// ppt转换为pdf
public static boolean ppt2PDF(String inputFile, String pdfFile) {
try {
ActiveXComponent app = new ActiveXComponent(
"PowerPoint.Application");
// app.setProperty("Visible", msofalse);
Dispatch ppts = app.getProperty("Presentations").toDispatch();

Dispatch ppt = Dispatch.call(ppts, "Open", inputFile, true,// ReadOnly
true,// Untitled指定文件是否有标题
false// WithWindow指定文件是否可见
).toDispatch();

Dispatch.call(ppt, "SaveAs", pdfFile, ppSaveAsPDF);

Dispatch.call(ppt, "Close");

app.invoke("Quit");
return true;
} catch (Exception e) {
return false;
}
}
}

按照上述操作即可完成文档之间格式的转换,但在我实际操作的时候真是各种bug各种奇葩啊!其中有一件事着实让人无语,在进行word转换为pdf的时候,提示转换失败,当时我一直认为是自己程序的问题,但是在认真地检查之后并没有发现有任何错误,最后还是在大神的提点下才恍然大悟,原来自己在发布到服务器的时候,由于服务器并没有安装office,所以才一直提示转化失败!哎~万万没想到竟然是这个问题......


后续补充:

     对这种方法操作之后,发现有很多弊端,在使用上不是那么地方便,如:在项目中生成pdf的时候,若生成成功,则不会出现资源占用的问题,但只要出现过一次生成失败之后,每次都会报资源占用的问题(这时因为上一次生成失败的时候,并没有释放资源),必须手动释放该资源,才不会出现这种问题。这着实很让人苦恼,并且用户在使用过程中,显得极其不友好,此外我们也不可能一直盯着这个问题去手动释放资源。因此,个人不太建议使用这种方法,也或许是自己没有找到解决的方法,希望知道的大神们可以指点迷津!