运行时的 Java 类定义
可能的重复:
如何以编程方式编译和实例化 Java 类?< /a>
如何在运行时创建一个新的java类?
Possible Duplicate:
How do I programmatically compile and instantiate a Java class?
How to create a new java class at runtime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
类 ClassLoader.defineClass(String name, byte[] b, int off, int len, ProtectionDomainprotectionDomain)
问题是这个方法是受保护的。因此,您应该使用自己的类扩展类加载器,并从那里调用此方法。
Use
Class<?> ClassLoader.defineClass(String name, byte[] b, int off, int len, ProtectionDomain protectionDomain)
The problem is that this method is protected. So, you should extend class loader with your own class and call this method from there.