编辑java类文件JAD
我需要更改类文件中一个构造函数的访问修饰符...我如何使用 jad 来做到这一点..
谢谢大家...
raj...
i need to change the access modifier of one constructor in a class file... how do i do it with jad..
thanks all...
raj...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 JAD 的解决方案:
javac
编译它更简单的解决方案:(
您的 IDE 将建议
ctor
的类型。 ..否则更改它)现在您可以在运行时调用构造函数。
如果您确实需要修改字节码,请查看ASM 库。
Solution with JAD:
javac
More simple solution:
(Your IDE will suggest the type for
ctor
... otherwise change it)Now you can invoke the constructor at runtime.
If you really need to modify the byte code, have a look at the ASM library.