Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
AsposeWords_21_1.java 478 Bytes
Copy Edit Raw Blame History
liuzy authored 2023-02-09 10:54 . words 21.1
import javassist.ClassPool;
import javassist.CtClass;
public class AsposeWords_21_1 {
public static void main(String[] args) throws Exception {
ClassPool.getDefault().insertClassPath("aspose-words-21.1-jdk17.jar");
CtClass clazz = ClassPool.getDefault().getCtClass("com.aspose.words.zzZE0");
clazz.getDeclaredMethod("zzZ4h").setBody("{return 1;}");
clazz.getDeclaredMethod("zzZ4g").setBody("{return 1;}");
clazz.writeFile();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化