当前位置:   article > 正文

Java实现 利用sigar.jar监控检测cpu、磁盘、内存的性能值查询和使用量查询 。以及根据进程名查询PID,根据PID杀死进程_java编程 sigar.jar

java编程 sigar.jar

Java实现 利用sigar.jar监控检测cpu、磁盘、内存的性能值查询和使用量查询 。以及根据进程名查询PID,根据PID杀死进程

import com.sun.jna.Library;
import com.sun.jna.Native;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.lang.management.ManagementFactory;
import java.lang.management.RuntimeMXBean;
import java.lang.reflect.Field;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.Date;
import com.sun.jna.Platform;
import org.hyperic.sigar.CpuInfo;
import org.hyperic.sigar.CpuPerc;
import org.hyperic.sigar.FileSystem;
import org.hyperic.sigar.FileSystemUsage;
import org.hyperic.sigar.Mem;
import org.hyperic.sigar.Sigar;
import org.hyperic.sigar.SigarException;
import org.hyperic.sigar.Swap;
import org.springframework.util.StringUtils;

public class GetInfo {

	public interface Kernel32 extends Library {
		public static Kernel32 INSTANCE = (Kernel32) Native.loadLibrary("kernel32", Kernel32.class);

		public long GetProcessId(Long hProcess);
	}

	/**
	 * 1.获取cpu信息
	 */
	public static void getCpuInfo() {
		System.out.println("***********获取cpu信息***********");
		Sigar sigar = new Sigar();
		// CPU的总量(单位:HZ)及CPU的相关信息
		CpuInfo infos[];
		try {
			// CPU数量(单位:个)
			System.out.println("核心cpu数:" + Runtime.getRuntime().availableProcessors());// 核心cpu数
			int cpuLength = sigar.getCpuInfoList().length;
			System.out.println("CPU数量" + cpuLength);
			infos = sigar.getCpuInfoList();

			for (int i = 0; i < infos.length; i++) {// 不管是单块CPU还是多CPU都适用
				CpuInfo info = infos[i];
				System.out.println("第" + i + 1 + "块");
				System.out.println("CPU的总量MHzmhz=" + info.getMhz());// CPU的总量MHz
				System.out.println("获得CPU的卖主,如:Intelvendor=" + info.getVendor());// 获得CPU的卖主,如:Intel
				System.out.println("获得CPU的类别,如:Celeronmodel=" + info.getModel());// 获得CPU的类别,如:Celeron
				System.out.println("缓冲存储器数量cache size=" + info.getCacheSize());// 缓冲存储器数量
			}
		} catch (SigarException e1) {
			e1.printStackTrace();
		}
		// 不管是单块CPU还是多CPU都适用
		CpuPerc cpuList[] = null;
		try {
			cpuList = sigar.getCpuPercList();
		} catch (SigarException e) {
			e.printStackTrace();
		}
		for (int i = 0; i < cpuList.length; i++) {
			getCpuUsage(cpuList[i], i);
		}
	}

	/**
	 * 2.cpu使用率
	 * 
	 * @param cpu
	 */
	public static void getCpuUsage(CpuPerc cpu, int i) {
		System.out.println("***********获取cpu【" + (i + 1) + "】使用率***********");

		System.out.println("CPU用户使用率:    " + CpuPerc.format(cpu.getUser()));// 用户使用率
		System.out.println("CPU系统使用率:    " + CpuPerc.format(cpu.getSys()));// 系统使用率
		System.out.println("CPU当前等待率:    " + CpuPerc.format(cpu.getWait()));// 当前等待率
		System.out.println("CPU当前错误率:    " + CpuPerc.format(cpu.getNice()));//
		System.out.println("CPU当前空闲率:    " + CpuPerc.format(cpu.getIdle()));// 当前空闲率
		System.out.println("CPU总的使用率:    " + CpuPerc.format(cpu.getCombined()));// 总的使用率

	}

	/**
	 * 3.获取磁盘信息
	 * 
	 * @throws SigarException
	 */
	public static void getDiskInfo() throws SigarException {
		System.out.println("***********获取磁盘信息***********");
		// 取硬盘已有的分区及其详细信息(通过sigar.getFileSystemList()来获得FileSystem列表对象,然后对其进行编历
		Sigar sigar = new Sigar();
		FileSystem fslist[] = sigar.getFileSystemList();
		String dir = System.getProperty("user.home");// 当前用户文件夹路径
		System.out.println(dir + "   " + fslist.length);
		for (int i = 0; i < fslist.length; i++) {
			System.out.println("\n~~~~~~~~~~" + i + "~~~~~~~~~~");
			FileSystem fs = fslist[i];
			// 分区的盘符名称
			System.out.println("分区的盘符名称fs.getDevName() = " + fs.getDevName());
			// 分区的盘符名称
			System.out.println("分区的盘符名称fs.getDirName() = " + fs.getDirName());
			System.out.println("fs.getFlags() = " + fs.getFlags());//
			// 文件系统类型,比如 FAT32、NTFS
			System.out.println("文件系统类型,比如 FAT32、NTFSfs.getSysTypeName() = " + fs.getSysTypeName());
			// 文件系统类型名,比如本地硬盘、光驱、网络文件系统等
			System.out.println("文件系统类型名,比如本地硬盘、光驱、网络文件系统等fs.getTypeName() = " + fs.getTypeName());
			// 文件系统类型
			System.out.println("文件系统类型fs.getType() = " + fs.getType());

		}
	}

	/**
	 * 4.获取磁盘使用量
	 * 
	 * @throws SigarException
	 */
	public static void getDiskUsage() throws SigarException {
		System.out.println("***********获取磁盘使用量***********");
		Sigar sigar = new Sigar();
		FileSystem fslist[] = sigar.getFileSystemList();
		for (int i = 0; i < fslist.length; i++) {
			System.out.println("\n~~~~~~~~~~" + i + "~~~~~~~~~~");
			FileSystem fs = fslist[i];
			FileSystemUsage usage = null;
			try {
				usage = sigar.getFileSystemUsage(fs.getDirName());
			} catch (SigarException e) {
				if (fs.getType() == 2)
					throw e;
				continue;
			}
			switch (fs.getType()) {
			case 0: // TYPE_UNKNOWN :未知
				break;
			case 1: // TYPE_NONE
				break;
			case 2: // TYPE_LOCAL_DISK : 本地硬盘
				// 文件系统总大小
				System.out.println(" 文件系统总大小Total = " + usage.getTotal() + "KB");// diskTotal
				// 文件系统剩余大小
				System.out.println(" 文件系统剩余大小Free = " + usage.getFree() + "KB");
				// 文件系统可用大小
				System.out.println("  文件系统可用大小Avail = " + usage.getAvail() + "KB");
				// 文件系统已经使用量
				System.out.println(" 文件系统已经使用量Used = " + usage.getUsed() + "KB");// diskUsage
				double usePercent = usage.getUsePercent() * 100D;
				// 文件系统资源的利用率
				System.out.println(" 文件系统资源的利用率Usage = " + usePercent + "%");
				break;
			case 3:// TYPE_NETWORK :网络
				break;
			case 4:// TYPE_RAM_DISK :闪存
				break;
			case 5:// TYPE_CDROM :光驱
				break;
			case 6:// TYPE_SWAP :页面交换
				break;
			}
			System.out.println(" DiskReads = " + usage.getDiskReads());
			System.out.println(" DiskWrites = " + usage.getDiskWrites());

		}

	}

	/**
	 * 5.获取内存信息
	 * 
	 * @return
	 * @throws SigarException
	 */
	public static void getMemoryInfo() throws SigarException {
		System.out.println("***********获取内存信息***********");
		Sigar sigar = new Sigar();
		// 物理内存信息
		Mem mem = sigar.getMem();
		// 内存总量
		System.out.println("内存总量Total = " + mem.getTotal() / 1024L / 1024 + "M av");// memoryTotal;
		// 当前内存使用量
		System.out.println("当前内存使用量Used = " + mem.getUsed() / 1024L / 1024 + "M used");// memoryUsage
		// 当前内存剩余量
		System.out.println("当前内存剩余量Free = " + mem.getFree() / 1024L / 1024 + "M free");

		// 系统页面文件交换区信息
		Swap swap = sigar.getSwap();
		// 交换区总量
		System.out.println("交换区总量Total = " + swap.getTotal() / 1024L + "K av");
		// 当前交换区使用量
		System.out.println("当前交换区使用量Used = " + swap.getUsed() / 1024L + "K used");
		// 当前交换区剩余量
		System.out.println("当前交换区剩余量Free = " + swap.getFree() / 1024L + "K free");
	}

	/**
	 * 6.ServerSystemInfoVO填充属性
	 * 
	 * @param svo
	 * @return
	 * @throws SigarException
	 */
	public static ServerSystemInfoVO setServerSystemInfoVO(ServerSystemInfoVO svo) throws SigarException {
		Sigar sigar = new Sigar();
		Mem mem = sigar.getMem();
		FileSystem fslist[] = sigar.getFileSystemList();
		// 磁盘大小
		long diskTotal = 0;// b
		for (int i = 0; i < fslist.length; i++) {
			FileSystem fs = fslist[i];
			FileSystemUsage usage = null;
			try {
				usage = sigar.getFileSystemUsage(fs.getDirName());
				if (fs.getType() == 2) {
					diskTotal += usage.getTotal() * 1024;

				}
				String host = System.getProperty("java.rmi.server.hostname");
				svo.setIp((host == null || host.length() == 0) ? InetAddress.getLocalHost().getHostAddress() : host);
				svo.setCpuCoreCount(Runtime.getRuntime().availableProcessors());
				svo.setCpuCount(sigar.getCpuInfoList().length);
				svo.setDiskTotal(diskTotal);
				svo.setMemoryTotal(mem.getTotal());

			} catch (SigarException e) {
				if (fs.getType() == 2)
					throw e;
				continue;
			} catch (UnknownHostException e) {
				e.printStackTrace();
			}

		}
		return svo;

	}

	/**
	 * 7.ServerResourceVO填充属性
	 * 
	 * @param svo
	 * @return
	 */
	public static ServerResourceVO setServerResourceVO(ServerResourceVO svo) {
		Sigar sigar = new Sigar();
		float cpuLoad = 0;
		try {
			Mem mem = sigar.getMem();
			double cputotal = 0;
			double Combinedtotal = 0;
			CpuPerc cpuList[] = sigar.getCpuPercList();
			for (int i = 0; i < cpuList.length; i++) {
				CpuPerc cpu = cpuList[i];
				Combinedtotal += cpu.getCombined();
				cputotal += 1;
			}
			cpuLoad = (float) (Combinedtotal / cputotal);
			long memoryUsage = mem.getUsed(); // b

			FileSystem fslist[] = sigar.getFileSystemList();
			// 磁盘使用量
			long diskUsage = 0;// b
			for (int i = 0; i < fslist.length; i++) {
				FileSystem fs = fslist[i];
				FileSystemUsage usage = null;
				try {
					usage = sigar.getFileSystemUsage(fs.getDirName());
					if (fs.getType() == 2) {
						diskUsage += usage.getUsed() * 1024;
					}
				} catch (SigarException e) {
					if (fs.getType() == 2)
						throw e;
					continue;
				}

			}
			String host = System.getProperty("java.rmi.server.hostname");
			Date date = new Date();
			svo.setIp((host == null || host.length() == 0) ? InetAddress.getLocalHost().getHostAddress() : host);
			svo.setCpuLoad(cpuLoad);
			svo.setDiskUsage(diskUsage);
			svo.setMemoryUsage(memoryUsage);
			svo.setTimestamp(date.getTime());
		} catch (SigarException e1) {
			e1.printStackTrace();
		} catch (UnknownHostException e) {
			e.printStackTrace();
		}

		return svo;

	}

	/**
	 * 根据进程名称找出进程的PID windows下ok linux下还没测试
	 * 
	 * @param processName 进程名
	 */
	public static void findExecuterProcess(String processName) {

		try {
			Process process = null;
			if (Platform.isWindows()) {
				String[] cmmd = { "cmd", "/c",
						"FOR /F \"tokens=2,3*\"; %i  in ('tasklist /nh ^| find \"" + processName + "\"') do @echo %i" };
				process = Runtime.getRuntime().exec(cmmd);
			} else if (Platform.isLinux() || Platform.isAIX()) {
				String cmmd = "ps -ef | grep \"" + processName + "\" | grep -v grep | awk '{print $2}'";
				process = Runtime.getRuntime().exec(cmmd);
			}
			String str = null;
			BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()));
			while ((str = br.readLine()) != null) {
				// str就是PID
				System.out.println(str);
			}

		} catch (IOException e) {

			e.printStackTrace();
		}

	}

	/**
	 * 关闭Linux/windows进程
	 * 
	 * @param pid 进程的PID
	 */
	public static boolean killProcessByPid(String pid) {
		if (StringUtils.isEmpty(pid) || "-1".equals(pid)) {
			throw new RuntimeException("Pid ==" + pid);
		}
		Process process = null;
		BufferedReader reader = null;
		String command = "";
		boolean result = false;
		if (Platform.isWindows()) {
			command = "cmd.exe /c taskkill /PID " + pid + " /F /T ";
		} else if (Platform.isLinux() || Platform.isAIX()) {
			command = "kill -9 " + pid;
		}
		try {
			// 杀掉进程
			process = Runtime.getRuntime().exec(command);
			reader = new BufferedReader(new InputStreamReader(process.getInputStream(), "utf-8"));
			String line = null;
			while ((line = reader.readLine()) != null) {
				System.out.println("kill PID return info -----> " + line);

			}
			result = true;
		} catch (Exception e) {

			result = false;
		} finally {
			if (process != null) {
				process.destroy();
			}
			if (reader != null) {
				try {
					reader.close();
				} catch (IOException e) {

				}
			}
		}
		return result;
	}

	public static void main(String[] args) throws SigarException {

		/*
		 * getCpuInfo(); getDiskInfo(); getMemoryInfo(); getDiskUsage();
		 * ServerSystemInfoVO svo = new ServerSystemInfoVO();
		 * System.out.println(setServerSystemInfoVO(svo));
		 * System.out.println(setServerResourceVO(new ServerResourceVO()));
		 */
		findExecuterProcess("Notepad.exe");
		// killProcessByPid("42100");
	}

}

  • 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
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/319757
推荐阅读
相关标签
  

闽ICP备14008679号