是否可以在不使用反射的情况下获取.class文件(在java中)的信息
有人可以指导我吗?
是否可以在不使用反射的情况下获取.class文件(在java中)的信息?像类方法、构造函数字段等信息,我们是否可以在Java中不使用反射来调用它们?
提前致谢。
can someone guide me?
Is it possible to get information of .class file (in java) without the use of reflection? Information like class methods,constructors fields etc., and also can we invoke them without using Reflection in Java?
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以根据字节码来分析
.class
。手动或使用 BCEL 等库You can analyize the
.class
in terms of bytecode. Either manually or using a library like BCEL请参阅 Java 虚拟机规范,第 4 章类文件格式。
See Java Virtual Machine Spec, Chapter 4 The class File Format.