RuntimeMXBean


RuntimeMXBean java.lang.management

Java 5.0

This MXBean interface provides access to the runtime configuration of the Java virtual machine, including system properties, command-line arguments, class path , virtual machine vendor and version, and so on. getUptime( ) returns the uptime of the virtual machine in milliseconds .

 public interface  RuntimeMXBean  {  // Public Instance Methods  String  getBootClassPath  ( );        String  getClassPath  ( );        java.util.List<String>  getInputArguments  ( );        String  getLibraryPath  ( );        String  getManagementSpecVersion  ( );        String  getName  ( );        String  getSpecName  ( );        String  getSpecVendor  ( );        String  getSpecVersion  ( );        long  getStartTime  ( );        java.util.Map<String,String>  getSystemProperties  ( );        long  getUptime  ( );        String  getVmName  ( );        String  getVmVendor  ( );        String  getVmVersion  ( );        boolean  isBootClassPathSupported  ( );   } 

Returned By

ManagementFactory.getRuntimeMXBean( )



Java In A Nutshell
Java In A Nutshell, 5th Edition
ISBN: 0596007736
EAN: 2147483647
Year: 2004
Pages: 1220

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net