本文介绍了使用Java查询系统(非JVM)正常运行时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在JavaSE 6中是否存在与操作系统无关的方法来查询系统(不是JVM,我知道RuntimeMXBean.getUptime())的正常运行时间?
Is there a OS-neutral method of querying for system (not JVM - I am aware of RuntimeMXBean.getUptime()) uptime in JavaSE 6 ?
谢谢
推荐答案
是,不是.
- 查询正常运行时间的特定于系统的方式(例如* nix上的正常运行时间)
- 有几种方法检测操作系统.
- 可能的操作系统数量有限.
- 您处于通用编程环境中,所以...
- There are system specific ways of querying uptime (e.g. uptime on *nix)
- There are ways to detect the operating system.
- There is a small finite number of likely operating systems.
- And you're in a general purpose programming environment, so...
这篇关于使用Java查询系统(非JVM)正常运行时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!