RuntimeMXBean.getBootClassPath() : RuntimeMXBean « Development Class « Java
- Java
- Development Class
- RuntimeMXBean
RuntimeMXBean.getBootClassPath()
import java.lang.management.ManagementFactory;
import java.lang.management.RuntimeMXBean;
import java.util.Date;
public class Main {
public static void main(String args[]) throws Exception {
RuntimeMXBean mx = ManagementFactory.getRuntimeMXBean();
System.out.println(mx.getBootClassPath());
}
}
Related examples in the same category