aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/libjava/classpath/examples/gnu/classpath/examples/management/TestRuntime.java
blob: 2a629ca83c6e59663468ff610d728cd4e014ee10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* TestRuntime.java -- Tests the runtime bean.
   Copyright (C) 2006 Free Software Foundation, Inc.

This file is part of GNU Classpath examples.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA. */

package gnu.classpath.examples.management;

import java.lang.management.ManagementFactory;
import java.lang.management.RuntimeMXBean;

import java.util.Date;

public class TestRuntime
{

  public static void main(String[] args)
  {
    RuntimeMXBean vmBean = ManagementFactory.getRuntimeMXBean();
    System.out.println("Bean: " + vmBean);
    boolean bootClassPath = vmBean.isBootClassPathSupported();
    System.out.println("Boot Class Path Supported: " + bootClassPath);
    if (bootClassPath)
      System.out.println("Boot Class Path: " + vmBean.getBootClassPath());
    System.out.println("Class Path: " + vmBean.getClassPath());
    System.out.println("Input Arguments: " + vmBean.getInputArguments());
    System.out.println("Library Path: " + vmBean.getLibraryPath());
    System.out.println("Management Spec. Version: " + vmBean.getManagementSpecVersion());
    System.out.println("Name: " + vmBean.getName());
    System.out.println("Spec Name: " + vmBean.getSpecName());
    System.out.println("Spec Vendor: " + vmBean.getSpecVendor());
    System.out.println("Spec Version: " + vmBean.getSpecVersion());
    System.out.println("Start Time: " + new Date(vmBean.getStartTime()));
    System.out.println("System Properties: " + vmBean.getSystemProperties());
    System.out.println("Uptime: " + vmBean.getUptime() + "ms");
    System.out.println("VM Name: " + vmBean.getVmName());
    System.out.println("VM Vendor: " + vmBean.getVmVendor());
    System.out.println("VM Version: " + vmBean.getVmVersion());
  }
}