如何去除 aspose.cells 水印

1、官网下载 aspose-cells-19.7.jar

https://downloads.aspose.com/cells/java

2、使用 javassist 反编译 jar 并重新打包生成 jar

由于aspose产品系列是没有做联网校验的,所以破解起来比较容易,只要找到核心逻辑,用 javassist 重新生成一下类即可。

重新编译打包生成 aspose-cells-19.7.jar,见笔者的文章 使用 javassist 反编译 class 并重新打包 jar

3、在工程中引入我们打包生成的 aspose-cells-19.7.jar,在使用 aspose 方法之前,先调用 setLicense(),让破解的脚本生效。

InputStream license = null;
License aposeLic = new License();
aposeLic.setLicense(license);

4、破解效果

如何去除 aspose.cells 水印_第1张图片

你可能感兴趣的:(去除水印,aspose.cells)