我们在网页正有时想在线预览word,但是一般浏览器都不支持,但是可以在线预览pdf,我们可以实现将word转为pdf,废话不多说,上代码。
1、引入jar包
<dependency>
<groupId>net.sf.jacob-project</groupId>
<artifactId>jacob</artifactId>
<version>1.14.3</version>
</dependency>
2、百度搜索下载 jacob-1.14.3-x64_x86
根据系统和tomcat将对应版本dll文件分别放到下面三个目录中:
C:\Windows\System32
C:\Windows\SysWOW64
tomcat-7.0.94-x64\bin
3、word转pdf的工具
import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.Dispatch;
import lombok.extern.slf4j.Slf4j;
import java.io.File;
/**
* word转pdf的工具
* @author 杨红杰
* @date 2020-4-24 13:53
*/
@Slf4j
public class Word2PdfUtil {
/* 不保存待定的更改 */
private static final int wdDoNotSaveChanges = 0;
/* word转PDF 格式 */
private static final int wdFormatPDF = 17;
/**
* word转PDF 格式
* @param source word路径
* @param target 生成的pdf路径
* @return
*/
public static boolean word2pdf(String source, String target) {
log.info("Word转PDF开始启动...");
long start = System.currentTimeMillis();
ActiveXComponent app = null;
try {
app = new ActiveXComponent("Word.Application");
app.setProperty("Visible", false);
Dispatch docs = app.getProperty("Documents").toDispatch();
log.info("打开文档:" + source);
Dispatch doc = Dispatch.call(docs, "Open", source, false, true).toDispatch();
log.info("转换文档到PDF:" + target);
File tofile = new File(target);
if (tofile.exists()) {
tofile.delete();
}
Dispatch.call(doc, "SaveAs", target, wdFormatPDF);
Dispatch.call(doc, "Close", false);
long end = System.currentTimeMillis();
log.info("转换完成,用时:" + (end - start) + "ms");
return true;
} catch (Exception e) {
log.error("Word转PDF出错:" + e.getMessage(), e);
return false;
} finally {
if (app != null) {
app.invoke("Quit", wdDoNotSaveChanges);
}
}
}
}