mirror of
https://github.com/zfile-dev/zfile.git
synced 2025-04-19 05:34:52 +00:00
59 lines
1.2 KiB
Java
59 lines
1.2 KiB
Java
package im.zhaojun.common.model;
|
|
|
|
import cn.hutool.core.date.BetweenFormater;
|
|
import cn.hutool.core.date.DateUtil;
|
|
import lombok.Data;
|
|
import org.springframework.core.io.ClassPathResource;
|
|
import org.springframework.core.io.Resource;
|
|
|
|
import java.io.IOException;
|
|
import java.lang.management.ManagementFactory;
|
|
|
|
/**
|
|
* @author zhaojun
|
|
*/
|
|
@Data
|
|
public class Sys {
|
|
|
|
/**
|
|
* 项目路径
|
|
*/
|
|
private String projectDir;
|
|
|
|
/**
|
|
* 操作系统
|
|
*/
|
|
private String osName;
|
|
|
|
/**
|
|
* 系统架构
|
|
*/
|
|
private String osArch;
|
|
|
|
/**
|
|
* 系统版本
|
|
*/
|
|
private String osVersion;
|
|
|
|
/**
|
|
* 启动时间
|
|
*/
|
|
private String upTime;
|
|
|
|
public Sys() {
|
|
this.osName = System.getProperty("os.name");
|
|
this.osArch = System.getProperty("os.arch");
|
|
this.osVersion = System.getProperty("os.version");
|
|
Resource resource = new ClassPathResource("");
|
|
try {
|
|
this.projectDir = resource.getFile().getAbsolutePath();
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
long uptime = ManagementFactory.getRuntimeMXBean().getUptime();
|
|
this.upTime = DateUtil.formatBetween(uptime, BetweenFormater.Level.SECOND);
|
|
}
|
|
|
|
}
|