[测评系统]--测评系统核心代码库
林致杰
2023-10-31 1f30a20ab3dd61609ae43dc7fb9d8b976903a027
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
package com.ots.project.monitor.server.domain;
import com.ots.common.utils.Arith;
import com.ots.common.utils.DateUtils;
import java.lang.management.ManagementFactory;
 
public class Jvm {
    
    private double total;
    
    private double max;
    
    private double free;
    
    private String version;
    
    private String home;
    public double getTotal() {
        return Arith.div(total, (1024 * 1024), 2);
    }
    public void setTotal(double total) {
        this.total = total;
    }
    public double getMax() {
        return Arith.div(max, (1024 * 1024), 2);
    }
    public void setMax(double max) {
        this.max = max;
    }
    public double getFree() {
        return Arith.div(free, (1024 * 1024), 2);
    }
    public void setFree(double free) {
        this.free = free;
    }
    public double getUsed() {
        return Arith.div(total - free, (1024 * 1024), 2);
    }
    public double getUsage() {
        return Arith.mul(Arith.div(total - free, total, 4), 100);
    }
    
    public String getName() {
        return ManagementFactory.getRuntimeMXBean().getVmName();
    }
    public String getVersion() {
        return version;
    }
    public void setVersion(String version) {
        this.version = version;
    }
    public String getHome() {
        return home;
    }
    public void setHome(String home) {
        this.home = home;
    }
    
    public String getStartTime() {
        return DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD_HH_MM_SS, DateUtils.getServerStartDate());
    }
    
    public String getRunTime() {
        return DateUtils.getDatePoor(DateUtils.getNowDate(), DateUtils.getServerStartDate());
    }
}