Get application uptime

后端 未结 4 1139
有刺的猬
有刺的猬 2020-12-31 02:59

I\'ve written an application in java and I want to add a feature to report the uptime of the application. Is there a Class/method in the JVM that can do this?

Should

4条回答
  •  [愿得一人]
    2020-12-31 03:50

    The result is in milliseconds:

    RuntimeMXBean mxBean = ManagementFactory.getRuntimeMXBean();
    System.out.println(mxBean.getUptime());
    

    See: ManagementFactory.getRuntimeMXBean() javadoc.

提交回复
热议问题