当前位置:网站首页>一、excel转pdf格式jacob.jar
一、excel转pdf格式jacob.jar
2022-07-31 10:44:00 【HJHO】
1.下载jacob.jar包
jacob资料
2.将jacob-1.17-M2-x64.dll 存放在jdk/bin目录下


3.导入本地依赖
<dependency>
<groupId>com.jacob</groupId>
<artifactId>jacob</artifactId>
<version>1.19</version>
<scope>system</scope>
<!--本地的jacob.jar的路径-->
<systemPath>D:\jacob-1.17-M2\jacob.jar</systemPath>
</dependency>
4.直接传入输入的excel和输出的pdf路径
示例代码:
package com.ysb.zy.util.pdf;
import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.ComThread;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;
public class Utils {
/**
* 将excel到pdf文件
* @param inputFilePath
* @param outputFilePath
*/
public static void jacobExcelToPDFs(String inputFilePath, String outputFilePath) {
ActiveXComponent ax = null;
Dispatch excel = null;
try {
ComThread.InitSTA();
ax = new ActiveXComponent("Excel.Application");
ax.setProperty("Visible", new Variant(false));
//禁用宏
ax.setProperty("AutomationSecurity", new Variant(3));
Dispatch excels = ax.getProperty("Workbooks").toDispatch();
Object[] obj = {
inputFilePath,
new Variant(false),
new Variant(false)
};
excel = Dispatch.invoke(excels, "Open", Dispatch.Method, obj, new int[9]).toDispatch();
//获取到sheets的集合对象
Dispatch sheets = Dispatch.get(excel, "sheets").toDispatch();
//获取到总表数
int count = Dispatch.get(sheets, "count").changeType(Variant.VariantInt).getInt();
for (int i = 1; i <= count; i++) {
//获取到sheet页
Dispatch sheet = Dispatch.invoke(sheets, "Item", Dispatch.Get, new Object[]{1}, new int[1]).toDispatch();
Dispatch page = Dispatch.get(sheet, "PageSetup").toDispatch();
//设置横向打印还是纵向打印
Dispatch.put(page, "Orientation", 2);
//设置缩放,值为100或false
Dispatch.put(page, "Zoom", false);
//所有行为一页
Dispatch.put(page, "FitToPagesTall", false);
//所有列为一页(1或false)
Dispatch.put(page, "FitToPagesWide", 1);
}
//转换格式
Object[] obj2 = {
//PDF格式等于0
new Variant(0),
outputFilePath,
//0=标准(生成的PDF图片不会模糊),1=最小的文件
new Variant(0)
};
Dispatch.invoke(excel, "ExportAsFixedFormat", Dispatch.Method, obj2, new int[1]);
} catch (Exception e) {
e.printStackTrace();
throw e;
} finally {
if (excel != null) {
Dispatch.call(excel, "Close", new Variant(false));
}
if (ax != null) {
ax.invoke("Quit", new Variant[]{});
ax = null;
}
ComThread.Release();
}
}
public static void main(String[] args) {
// D:\test
jacobExcelToPDFs("D:\\test\\test.xlsx","D:\\test\\test.pdf");
}
}
边栏推荐
猜你喜欢
随机推荐
Android安全专题(三)JNI混淆
透过开发抽奖小程序,体会创新与迭代
Intranet Penetration Learning (IV) Domain Lateral Movement - SMB and WMI Service Utilization
MySQL中JOIN的用法
7 天能找到 Go 工作吗?学学 Go 数组和指针试试
SQLServer2019安装(Windows)
单点登录原理及实现方式
前序、后序及层次遍历实现二叉树的序列化与反序列化
SQL如何从字符串截取指定字符(LEFT、MID、RIGHT三大函数)
【LeetCode】21. 合并两个有序链表
NowCoderTOP17-22 二分查找/排序——持续更新ing
「MySQL」- 基础增删改查
众多mock工具,这一次我选对了
【LeetCode】141.环形链表
Detailed explanation of SQL stored procedures
尚医通【预约挂号系统】总结
【LeetCode】203.移除链表元素
Summary of three methods for SQL deduplication
Build finished with errors/Executable Not Found
[ 图 论 ]二分图判定及其匹配(基础+提高)









