Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要一个 html 页面中的 java 小程序,但源代码不可见,这可以通过自定义类加载器实现吗?
您可以创建一个自定义 ClassLoader,从随机字节解码类。但是,这个 ClassLoader 本身就是一个类,需要以默认方式加载,以便 JVM 理解。并且用户可以对其进行反编译,从而有效地了解如何解码您的其他类。
在实践中所做的是使用混淆器。我们在公司使用 Proguard。