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.
当您对类的上下文一无所知时,有没有办法在 jvm 系统路径上收集 java 类名(作为字符串)?我见过一些类似的问题,但都需要至少知道包名称。
我看过 Java Interface Instrumentation,但除非我读错了东西,否则它似乎只与在 JVM 上运行的程序有关。
您可以通过以下方式获取类路径 jar 和目录:
System.getProperty("java.class.path");
然后你可以列出这个答案显示的罐子中的所有类。