java获取当前服务器状态cpu、内存、存储等核心信息

这篇具有很好参考价值的文章主要介绍了java获取当前服务器状态cpu、内存、存储等核心信息。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

目录

1.需要导入依赖包

 2.系统自带参数

3.获取当前服务器状态cpu、内存、存储等核心信息

 4.引入包后方法不存在

 5. 获取的cpu利用率和任务管理器cpu利用率值差距问题


1.需要导入依赖包

<dependency>
    <groupId>com.github.oshi</groupId>
    <artifactId>oshi-core</artifactId>
    <version>3.12.2</version>
    </dependency>
<dependency>
    <groupId>net.java.dev.jna</groupId>
    <artifactId>jna</artifactId>
    <version>5.2.0</version>
</dependency>
<dependency>
    <groupId>net.java.dev.jna</groupId>
    <artifactId>jna-platform</artifactId>
    <version>5.2.0</version>
</dependency>

// 当期最新版本,最新版本与上面版本方法有所区别
<dependency>
	<groupId>com.github.oshi</groupId>
	<artifactId>oshi-core</artifactId>
	<version>6.3.2</version>
</dependency>
<dependency>
	<groupId>net.java.dev.jna</groupId>
	<artifactId>jna</artifactId>
	<version>5.12.1</version>
</dependency>
<dependency>
	<groupId>net.java.dev.jna</groupId>
	<artifactId>jna-platform</artifactId>
	<version>5.12.1</version>
</dependency>

 2.系统自带参数

private static void systemParamsNameAndValue() {
		Properties properties = System.getProperties();
		Set<Map.Entry<Object, Object>> params = properties.entrySet();
		for (Iterator<Map.Entry<Object, Object>> iterator = params.iterator(); iterator.hasNext();) {
			Map.Entry<Object, Object> systemParam = iterator.next();
			Object key = systemParam.getKey();
			Object value = systemParam.getValue();
			System.out.println("系统属性名: [" + key + "]  ---------系统属性名字对应值: " + value);
		}

	}

 RESULT:

系统属性名: [java.runtime.name]  ---------系统属性名字对应值: Java(TM) SE Runtime Environment
系统属性名: [sun.boot.library.path]  ---------系统属性名字对应值: F:\jdk\jre\bin
系统属性名: [java.vm.version]  ---------系统属性名字对应值: 25.291-b10
系统属性名: [java.vm.vendor]  ---------系统属性名字对应值: Oracle Corporation
系统属性名: [java.vendor.url]  ---------系统属性名字对应值: http://java.oracle.com/
系统属性名: [path.separator]  ---------系统属性名字对应值: ;
系统属性名: [java.vm.name]  ---------系统属性名字对应值: Java HotSpot(TM) 64-Bit Server VM
系统属性名: [file.encoding.pkg]  ---------系统属性名字对应值: sun.io
系统属性名: [user.country]  ---------系统属性名字对应值: CN
系统属性名: [user.script]  ---------系统属性名字对应值: 
系统属性名: [sun.java.launcher]  ---------系统属性名字对应值: SUN_STANDARD
系统属性名: [sun.os.patch.level]  ---------系统属性名字对应值: 
系统属性名: [java.vm.specification.name]  ---------系统属性名字对应值: Java Virtual Machine Specification
系统属性名: [user.dir]  ---------系统属性名字对应值: F:\idea\workspace\
系统属性名: [java.runtime.version]  ---------系统属性名字对应值: 1.8.0_291-b10
系统属性名: [java.awt.graphicsenv]  ---------系统属性名字对应值: sun.awt.Win32GraphicsEnvironment
系统属性名: [java.endorsed.dirs]  ---------系统属性名字对应值: 
系统属性名: [os.arch]  ---------系统属性名字对应值: amd64
系统属性名: [java.io.tmpdir]  ---------系统属性名字对应值: C:\Users\ADMINI~1\AppData\Local\Temp\
系统属性名: [line.separator]  ---------系统属性名字对应值: 

系统属性名: [java.vm.specification.vendor]  ---------系统属性名字对应值: Oracle Corporation
系统属性名: [user.variant]  ---------系统属性名字对应值: 
系统属性名: [os.name]  ---------系统属性名字对应值: Windows 7
系统属性名: [sun.jnu.encoding]  ---------系统属性名字对应值: GBK
系统属性名: [java.library.path]  ---------系统属性名字对应值: 
系统属性名: [java.specification.name]  ---------系统属性名字对应值: Java Platform API Specification
系统属性名: [java.class.version]  ---------系统属性名字对应值: 5.0
系统属性名: [sun.management.compiler]  ---------系统属性名字对应值: HotSpot 64-Bit Tiered Compilers
系统属性名: [os.version]  ---------系统属性名字对应值: 10.0
系统属性名: [user.home]  ---------系统属性名字对应值: C:\Users\Administrator
系统属性名: [user.timezone]  ---------系统属性名字对应值: 
系统属性名: [java.awt.printerjob]  ---------系统属性名字对应值: sun.awt.windows.WPrinterJob
系统属性名: [file.encoding]  ---------系统属性名字对应值: UTF-8
系统属性名: [java.specification.version]  ---------系统属性名字对应值: 1.8
系统属性名: [java.class.path]  ---------系统属性名字对应值: 
系统属性名: [user.name]  ---------系统属性名字对应值: Administrator
系统属性名: [java.vm.specification.version]  ---------系统属性名字对应值: 1.8
系统属性名: [sun.java.command]  ---------系统属性名字对应值: 
系统属性名: [java.home]  ---------系统属性名字对应值: D:\jdk\jre
系统属性名: [sun.arch.data.model]  ---------系统属性名字对应值: 64
系统属性名: [user.language]  ---------系统属性名字对应值: zh
系统属性名: [java.specification.vendor]  ---------系统属性名字对应值: Oracle Corporation
系统属性名: [awt.toolkit]  ---------系统属性名字对应值: sun.awt.windows.WToolkit
系统属性名: [java.vm.info]  ---------系统属性名字对应值: mixed mode
系统属性名: [java.version]  ---------系统属性名字对应值: 1.8.0_291
系统属性名: [java.ext.dirs]  ---------系统属性名字对应值: 
系统属性名: [sun.boot.class.path]  ---------系统属性名字对应值: 
系统属性名: [java.vendor]  ---------系统属性名字对应值: Oracle Corporation
系统属性名: [file.separator]  ---------系统属性名字对应值: \
系统属性名: [java.vendor.url.bug]  ---------系统属性名字对应值: http://bugreport.sun.com/bugreort/
系统属性名: [sun.io.unicode.encoding]  ---------系统属性名字对应值: UnicodeLittle
系统属性名: [sun.cpu.endian]  ---------系统属性名字对应值: little
系统属性名: [sun.desktop]  ---------系统属性名字对应值: windows
系统属性名: [sun.cpu.isalist]  ---------系统属性名字对应值: amd64

3.获取当前服务器状态cpu、内存、存储等核心信息

// 正确包
import com.sun.management.OperatingSystemMXBean;
/// 错误包
//import java.lang.management.OperatingSystemMXBean;
import oshi.SystemInfo;
import oshi.hardware.CentralProcessor;
import java.io.File;
import java.lang.management.ManagementFactory;
import java.lang.management.MemoryMXBean;
import java.lang.management.MemoryUsage;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
	/***
	 * @author Benjamin
	 * @date 2022/12/8 10:02:50
	 * @version 1.0.0
	 * @description 获取系统详细参数信息
	 * @param
	 * @return void
	 */
	public static void initSystemInfo() {
		Executors.newSingleThreadScheduledExecutor().scheduleAtFixedRate(() -> {
			try {
				SystemInfo systemInfo = new SystemInfo();
				OperatingSystemMXBean osmxb = (OperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean();
				MemoryMXBean memoryMXBean = ManagementFactory.getMemoryMXBean();
				// 椎内存使用情况
				MemoryUsage memoryUsage = memoryMXBean.getHeapMemoryUsage();

				// 初始的总内存
				long initTotalMemorySize = memoryUsage.getInit();
				// 最大可用内存
				long maxMemorySize = memoryUsage.getMax();
				// 已使用的内存
				long usedMemorySize = memoryUsage.getUsed();

				// 操作系统
				String osName = System.getProperty("os.name");
				// 总的物理内存
				String totalMemorySize = new DecimalFormat("#.##").format(osmxb.getTotalPhysicalMemorySize() / 1024.0 / 1024 / 1024) + "G";
				// 剩余的物理内存
				String freePhysicalMemorySize = new DecimalFormat("#.##").format(osmxb.getFreePhysicalMemorySize() / 1024.0 / 1024 / 1024) + "G";
				// 已使用的物理内存
				String usedMemory = new DecimalFormat("#.##").format((osmxb.getTotalPhysicalMemorySize() - osmxb.getFreePhysicalMemorySize()) / 1024.0 / 1024 / 1024) + "G";
				// 获得线程总数
				ThreadGroup parentThread;
				for (parentThread = Thread.currentThread().getThreadGroup(); parentThread
						.getParent() != null; parentThread = parentThread.getParent()) {

				}

				int totalThread = parentThread.activeCount();

				// 磁盘使用情况
				File[] files = File.listRoots();
				for (File file : files) {
					String total = new DecimalFormat("#.#").format(file.getTotalSpace() * 1.0 / 1024 / 1024 / 1024) + "G";
					String free = new DecimalFormat("#.#").format(file.getFreeSpace() * 1.0 / 1024 / 1024 / 1024) + "G";
					String un = new DecimalFormat("#.#").format(file.getUsableSpace() * 1.0 / 1024 / 1024 / 1024) + "G";
					String path = file.getPath();
					System.err.println(path + "总:" + total + ",可用空间:" + un + ",空闲空间:" + free);
					System.err.println("=============================================");
				}

				System.err.println("操作系统:" + osName);
				System.err.println("程序启动时间:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(ManagementFactory.getRuntimeMXBean().getStartTime())));
				/// System.err.println("pid:" + System.getProperty("PID"));
				System.err.println("pid:" + getPID());
				System.err.println("cpu核数:" + Runtime.getRuntime().availableProcessors());
				printlnCpuInfo(systemInfo);
				System.err.println("JAVA_HOME:" + System.getProperty("java.home"));
				System.err.println("JAVA_VERSION:" + System.getProperty("java.version"));
				System.err.println("USER_HOME:" + System.getProperty("user.home"));
				System.err.println("USER_NAME:" + System.getProperty("user.name"));
				System.err.println("初始的总内存(JVM):" + new DecimalFormat("#.#").format(initTotalMemorySize * 1.0 / 1024 / 1024) + "M");
				System.err.println("最大可用内存(JVM):" + new DecimalFormat("#.#").format(maxMemorySize * 1.0 / 1024 / 1024) + "M");
				System.err.println("已使用的内存(JVM):" + new DecimalFormat("#.#").format(usedMemorySize * 1.0 / 1024 / 1024) + "M");
				System.err.println("总的物理内存:" + totalMemorySize);
				System.err.println("总的物理内存:" + new DecimalFormat("#.##").format(systemInfo.getHardware().getMemory().getTotal() * 1.0 / 1024 / 1024 / 1024) + "M");
				System.err.println("剩余的物理内存:" + freePhysicalMemorySize);
				System.err.println("剩余的物理内存:" + new DecimalFormat("#.##").format(systemInfo.getHardware().getMemory().getAvailable() * 1.0 / 1024 / 1024 / 1024) + "M");
				System.err.println("已使用的物理内存:" + usedMemory);
				System.err.println("已使用的物理内存:" + new DecimalFormat("#.##").format((systemInfo.getHardware().getMemory().getTotal() - systemInfo.getHardware().getMemory().getAvailable()) * 1.0 / 1024 / 1024 / 1024) + "M");
				System.err.println("总线程数:" + totalThread);
				System.err.println("===========================");
			} catch (Exception e) {
				e.printStackTrace();
			}
		}, 0, 60, TimeUnit.SECONDS);


	}

	/**
	 * 打印 CPU 信息
	 * @param systemInfo
	 */
	private static void printlnCpuInfo(SystemInfo systemInfo) throws InterruptedException {

		// todo 解决 Why does OSHI's System and Processor CPU usage differ from the Windows Task Manager?
		GlobalConfig.set(GlobalConfig.OSHI_OS_WINDOWS_CPU_UTILITY, true);

		CentralProcessor processor = systemInfo.getHardware().getProcessor();
		long[] prevTicks = processor.getSystemCpuLoadTicks();
		// 睡眠1s
		TimeUnit.SECONDS.sleep(1);
		long[] ticks = processor.getSystemCpuLoadTicks();
		long nice = ticks[CentralProcessor.TickType.NICE.getIndex()] - prevTicks[CentralProcessor.TickType.NICE.getIndex()];
		long irq = ticks[CentralProcessor.TickType.IRQ.getIndex()] - prevTicks[CentralProcessor.TickType.IRQ.getIndex()];
		long softirq = ticks[CentralProcessor.TickType.SOFTIRQ.getIndex()] - prevTicks[CentralProcessor.TickType.SOFTIRQ.getIndex()];
		long steal = ticks[CentralProcessor.TickType.STEAL.getIndex()] - prevTicks[CentralProcessor.TickType.STEAL.getIndex()];
		long cSys = ticks[CentralProcessor.TickType.SYSTEM.getIndex()] - prevTicks[CentralProcessor.TickType.SYSTEM.getIndex()];
		long user = ticks[CentralProcessor.TickType.USER.getIndex()] - prevTicks[CentralProcessor.TickType.USER.getIndex()];
		long iowait = ticks[CentralProcessor.TickType.IOWAIT.getIndex()] - prevTicks[CentralProcessor.TickType.IOWAIT.getIndex()];
		long idle = ticks[CentralProcessor.TickType.IDLE.getIndex()] - prevTicks[CentralProcessor.TickType.IDLE.getIndex()];
		long totalCpu = user + nice + cSys + idle + iowait + irq + softirq + steal;
		System.err.println("cpu核数:" + processor.getLogicalProcessorCount());
		System.err.println("cpu系统使用率:" + new DecimalFormat("#.##%").format(cSys * 1.0 / totalCpu));
		System.err.println("cpu用户使用率:" + new DecimalFormat("#.##%").format(user * 1.0 / totalCpu));
		System.err.println("cpu当前等待率:" + new DecimalFormat("#.##%").format(iowait * 1.0 / totalCpu));
		System.err.println("cpu当前空闲率:" + new DecimalFormat("#.##%").format(idle * 1.0 / totalCpu));

		// todo cup利用
		//  user + system + nice + iowait + irq + softirq + steal
		long cpuUtilization = user + nice + cSys  + iowait + irq + softirq + steal;
		System.err.println("cpu利用率:" + new DecimalFormat("#.##%").format(cpuUtilization * 1.0 / totalCpu));

		// hutool工具,底层用的也是oshi
		/*
		GlobalConfig.set(GlobalConfig.OSHI_OS_WINDOWS_CPU_UTILITY, true);
		cn.hutool.system.oshi.CpuInfo cpuInfo = OshiUtil.getCpuInfo();
		double free = cpuInfo.getFree();
		DecimalFormat format = new DecimalFormat("#.00");
		System.out.println("cpu利用率:" + Double.parseDouble(format.format(100.0D - free)));
		*/

		/// 低版本这两个方法是无参方法,高版本中是需要有参数的
		//System.err.format("CPU load: %.1f%% (counting ticks)%n", processor.getSystemCpuLoadBetweenTicks(ticksArray) * 100);
		//System.err.format("CPU load: %.1f%% (OS MXBean)%n", processor.getSystemCpuLoad(1L) * 100);
		long[] ticksArray = {1,2,3,4,5,6,7,8};
		System.err.format("CPU load: %.1f%% (counting ticks)%n", processor.getSystemCpuLoadBetweenTicks(ticksArray) * 100);
		System.err.format("CPU load: %.1f%% (OS MXBean)%n", processor.getSystemCpuLoad(1L) * 100);

		ProcessorIdentifierInfo(processor);
	}


	/**
	 * 获取进程id
	 * @return
	 */
	public static String getPID() {
		String name = ManagementFactory.getRuntimeMXBean().getName();
		return name.split("@")[0];
	}

	public static void ProcessorIdentifierInfo(CentralProcessor processor) {
		CentralProcessor.ProcessorIdentifier processorIdentifier = processor.getProcessorIdentifier();
		String vendor = processorIdentifier.getVendor();
		String name = processorIdentifier.getName();
		String family = processorIdentifier.getFamily();
		String model = processorIdentifier.getModel();
		String stepping = processorIdentifier.getStepping();
		String processorID = processorIdentifier.getProcessorID();
		// cpu64bit ? "Intel64" : "x86"
		// Intel64 Family 6 Model 142 Stepping 12
		String identifier = processorIdentifier.getIdentifier();
		long vendorFreq = processorIdentifier.getVendorFreq();
		System.out.println("vendor: " + vendor);
		// 处理器名字
		System.out.println("name: " + name);
		System.out.println("family: " + family);
		System.out.println("model: " + model);
		System.out.println("stepping: " + stepping);
		System.out.println("processorID: " + processorID);
		System.out.println("identifier: " + identifier);
		System.out.println("vendorFreq: " + vendorFreq);
	}

RESULT:

java 获取cpu 内存占用,java

 4.引入包后方法不存在

java 获取cpu 内存占用,java

 需要引入下面的包:

// 正确包
import com.sun.management.OperatingSystemMXBean;
/// 错误包
//import java.lang.management.OperatingSystemMXBean;

 5. 获取的cpu利用率和任务管理器cpu利用率值差距问题

java 获取cpu 内存占用,java

java 获取cpu 内存占用,java

 就是需要配置在CentralProcessor实例化之前:配置上也会有差距,相对准确率高一些。

GlobalConfig.set(GlobalConfig.OSHI_OS_WINDOWS_CPU_UTILITY, true);

具体可以看 Lead delveloper of Oshi Daniel Widdis github:

oshi/FAQ.md at master · oshi/oshi · GitHubNative Operating System and Hardware Information. Contribute to oshi/oshi development by creating an account on GitHub.https://github.com/oshi/oshi/blob/master/src/site/markdown/FAQ.md参考博客:解决Oshi获取CPU使用率与Windows任务管理器显示不匹配的问题_CTimet的博客-CSDN博客文章来源地址https://www.toymoban.com/news/detail-780323.html

到了这里,关于java获取当前服务器状态cpu、内存、存储等核心信息的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Java中获取当前服务器的IP地址

    获取ip的第一反应就是:使用InetAddress这个类:方法如下 可以知道此时获取到的服务器如果加了代理方式就是获取到代理的地址,一般会使用netty代理转发。 我的解决死方法(方法是死的,但是能解决问题^_^) 在nacos的配置里面新建一个

    2024年02月11日
    浏览(46)
  • 服务器的组成(CPU、内存、硬盘)

    目录 服务器的分类 服务器的组成 中央处理器CPU 内存 硬盘 网卡、存储卡、RAID卡 什么是服务器 服务器是在网络中为其他客户机提供服务的高性能计算机;具有高速的CPU运算能力,能够长时间的可靠运行,有强大的I/O外部数据吞吐能力以及更好的扩展性 服务器的内部结构与普

    2024年01月18日
    浏览(71)
  • linux服务器查看cpu和内存

    cat /proc/cpuinfo | grep \\\"physical id\\\" | sort | uniq | wc -l cat /proc/cpuinfo | grep \\\"cpu cores\\\" | uniq grep processor /proc/cpuinfo|wc -l cat /proc/cpuinfo |grep MHz|uniq less /proc/cpuinfo |grep model free -m free -h

    2024年02月05日
    浏览(72)
  • Linux 查看服务器内存、CPU 命令

    1 查看物理CPU个数:         Procs(进程) 2 查看服务器CPU内核个数 1 linux查看系统内存(硬盘) 2 查看服务器硬盘(当前文件夹下)使用率: 3 查看服务器硬盘(所有文件占用率)使用率: 1 查看内存,不带单位 2 查看内存使用情况,带单位,显示查看结果 显示的参数:       

    2024年02月15日
    浏览(67)
  • js获取当前服务器的ip

    如果提供的服务不是域名,而是ip形式,获取当前服务器的IP地址,可以使用JavaScript中的 window.location 对象。 window.location 对象包含当前页面的URL信息,包括主机名、协议、端口号等。可以从 window.location 对象中提取服务器的IP地址。 使用 window.location.hostname 属性获取当前服务器

    2024年02月11日
    浏览(54)
  • linux服务器监控之内存、cpu、网络、磁盘

    一、服务器实时内存监控 1、Linux帮助命令 man:Linux下的函数手册命令,可以查看所有命令的使用方法 ls:  ls -al: ll: 2、实时监控命令 top:   能够实时监控系统的运行状态,并且可以按照cpu及内存等进行排序。            语法:top -hv|-bcHiOSs -d secs -n max -u|U user -p pid(s) -o file

    2024年02月09日
    浏览(67)
  • Linux(包括centos) 如何查看服务器内存、CPU

    CPU架构主要包括:amd64、arm32v7、arm64v8、mips64el、mips32、ppc64le和ppc32等架构。 CPU信息主要为中央处理器详细信息,包括: 架构 核心数量 处理速度 厂商名称 CPU主频 标签 … 注:不同的操作系统或者CPU架构提供的信息不一定相同。 输出: 可以通过grep命令过滤信息: lscpu是一个

    2024年02月12日
    浏览(76)
  • 命令查看Linux服务器内存、CPU、显卡、硬盘使用情况

    使用命令:free -m 大致结果类似下图: 内存占用情况 参数解释: Mem行(单位均为M): total:内存总数 used:已使用内存数 free:空闲内存数 shared:当前废弃不用 buffers:缓存内存数(Buffer) cached:缓存内舒数(Page) (-/+ buffers/cache)行: (-buffers/cache): 真正使用的内存数,指

    2024年02月04日
    浏览(74)
  • Python3 获取当前服务器公网 IP 地址

    有同学问我如何使用 Python 获取服务器公网的 IP 地址呢?我测试几个发现,方法有很多,好用的就发现一种,即直接使用 Python 自带的 socket 包。 代码示例: 这样就能实现 Python 获取当前服务器公网的 IP 地址了。

    2024年02月06日
    浏览(59)
  • Linux 查看服务器内存、CPU、网络等占用情况的命令

    1、查看物理CPU个数:cat  2、查看服务器CPU内核个数:cat    每个物理CPU中core的个数(即核数) 3、服务器内存使用情况:free 3.1、缓存清除 如果cached过大接近total数就需要清除缓存了,缓存清除命令:  4、查看服务器的平均负载:top top   --可以查看服务器各个进程情况 u

    2024年02月08日
    浏览(69)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包