Find all classes availible at runtime java

前端 未结 1 1260
深忆病人
深忆病人 2021-01-16 11:53

I am attempting to find the names of all classes available at runtime in Java and have had some success using reflection in Guava with code such as:

ClassPat         


        
相关标签:
1条回答
  • 2021-01-16 12:41

    For a post 1.5 JVM, you can use http://docs.oracle.com/javase/6/docs/api/java/lang/instrument/Instrumentation.html#getAllLoadedClasses().

    0 讨论(0)
提交回复
热议问题