如何获取 jar 中每个类的 Class 对象
我有一个包含 30 个左右类的 jar 文件。我想要的是,在 main 方法的开头,我从该 jar 中调用一个类,该类使用 Java 的反射功能获取对 jar 中每个类的 Class
引用。我的最终目标是执行某种操作,查询为每个类定义的变量。基本上我正在寻找类似的东西。有没有一种简单的方法可以使用标准反射 API 来做到这一点,或者制定可行的解决方案会很麻烦?
List l = Reflection.getAllClasses();
String var;
foreach(Class c : l) {
var = c.getField("fieldname");
doSomething(var);
}
编辑:
只是为了清楚起见:代码将从检查的 jar 中执行。
I have a jar file with 30 or so classes. What I want is that at the beginning of the main method I invoke a class from within this jar which using Java's reflection capabilities gets Class
references to each class in the jar. My ultimate goal is to perform some sort of operation, querying a variable which is defined for every class. Basically I'm looking for something like. Is there an easy way to do this using the standard reflection APIs or it will be too much of a hassle to make a working solution?
List l = Reflection.getAllClasses();
String var;
foreach(Class c : l) {
var = c.getField("fieldname");
doSomething(var);
}
Edit:
Just to make it clear: The code will be executed from withing the inspected jar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对我有用:
This does the trick for me:
列出 JAR 文件中的所有类不是反射可以完成的事情。
但是,可以使用
JarInputStream
。Listing all classes in a JAR file is not something that can be done with reflection.
However, it can be done using a
JarInputStream
.以下解决方案适用于
classpath
中或classpath
外部的jar
。The following solution will work with a
jar
that is in yourclasspath
or outside yourclasspath
.