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.
嘿,我想实现以下功能:
最简单的方法是什么?
注意:解析 txt 文件是可以接受的,但我正在寻找一种更快的方法。
使用反射:
Class clazz = Class.forName(className); Method[] methods = clazz.getMethods(); Field[] fields = clazz.getFields();
正如其他人所建议的那样,请阅读如何使用反射。具体来说,查看Java API 中Class和Method提供的方法。
这是使用反射的教程。http://java.sun.com/developer/technicalArticles/ALT/Reflection/
最简单的方法?使用现有程序 javap