# springboot使用aspose把excel转换pdf

springboot 把excel转换pdf

# 源码

public static void main(String[] args)

	{

		String sourceFile = "C:\\Users\\zzy1998\\Desktop\\text\\ceshi\\花名册.xls";// 输入的文件
		String targetFile = "C:\\Users\\zzy1998\\Desktop\\text\\ceshi\\转换后.pdf";// 输出的文件
		try {
			InputStream is = new FileInputStream(new File("C:\\Users\\zzy1998\\Desktop\\text\\beifen\\license.xml"));
			License license = new License();
			license.setLicense(is);
			long old = System.currentTimeMillis();
			FileOutputStream os = new FileOutputStream(targetFile);
			Workbook excel = new Workbook(sourceFile);// 加载源文件数据
			excel.save(os, com.aspose.cells.SaveFormat.PDF);// 设置转换文件类型并转换
			os.close();
			long now = System.currentTimeMillis();
			System.out.println("共耗时:" + ((now - old) / 1000.0) + "秒"); // 转化用时
		} catch (Exception e) {
			e.printStackTrace();
		}

	}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

# 依赖

aspose-cells

这个依赖有商业版和免费版 免费版限制了页数还加了水印

商业版需要自己破解

license文件

<License>
    <Data>
        <Products>
            <Product>Aspose.Total for Java</Product>
            <Product>Aspose.Words for Java</Product>
        </Products>
        <EditionType>Enterprise</EditionType>
        <SubscriptionExpiry>20991231</SubscriptionExpiry>
        <LicenseExpiry>20991231</LicenseExpiry>
        <SerialNumber>8bfe198c-7f0c-4ef8-8ff0-acc3237bf0d7</SerialNumber>
    </Data>
    <Signature>
        sNLLKGMUdF0r8O1kKilWAGdgfs2BvJb/2Xp8p5iuDVfZXmhppo+d0Ran1P9TKdjV4ABwAgKXxJ3jcQTqE/2IRfqwnPf8itN8aFZlV3TJPYeD3yWE7IT55Gz6EijUpC7aKeoohTb4w2fpox58wWoF3SNp6sK6jDfiAUGEHYJ9pjU=
    </Signature>
</License>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

# 破解教程

引入依赖

<dependency>
    <groupId>org.javassist</groupId>
    <artifactId>javassist</artifactId>
    <version>3.27.0-GA</version>
</dependency>
1
2
3
4
5

修改指定类中的返回值

			public static void main(String[] args) throws NotFoundException, CannotCompileException, IOException {
		try {
			// 这一步是完整的jar包路径,选择自己解压的jar目录
			ClassPool.getDefault().insertClassPath("C:\\Users\\zzy1998\\Desktop\\text\\beifen\\aspose-cells-21.11.jar");
			// 获取指定的class文件对象
			CtClass zzZJJClass = ClassPool.getDefault().getCtClass("com.aspose.cells.License");
			// 从class对象中解析获取所有方法
			CtMethod[] methodA = zzZJJClass.getDeclaredMethods();
			for (CtMethod ctMethod : methodA) {
				// 获取方法获取参数类型
				CtClass[] ps = ctMethod.getParameterTypes();
				// 筛选同名方法,入参是Document
				if (ps.length == 1 && ctMethod.getName().equals("a")
						&& ps[0].getName().equals("org.w3c.dom.Document")) {
					System.out.println("ps[0].getName==" + ps[0].getName());
					// 替换指定方法的方法体
					ctMethod.setBody("{a = this;com.aspose.cells.zblc.a();}");
				}
			}
			// 这一步就是将破译完的代码放在桌面上
			zzZJJClass.writeFile("C:\\Users\\zzy1998\\Desktop\\text");

		} catch (Exception e) {
			System.out.println("错误==" + e);
		}

	}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  1. 把aspose-cells-21.11.jar后缀改成rar/zip等能解压的格式,解压为aspose-cells-21.11(文件名随意)
  2. 把刚刚生成文件替换到com.aspose.cells中
  3. 删除aspose-cells-21.11.jar中META-INF中的.RSA和.SF后缀的文件
  4. 将生成的jar文件放到maven库中,mvn install:install-file -Dfile="C:\Users\zzy1998\Desktop\text/aspose-cells-21.11.jar" -DgroupId=com.aspose -DartifactId=aspose-cells -Dversion=21.11 -Dpackaging=jar

破解教程地址 (opens new window)

破解教程 (opens new window)