懒羊羊
2024-01-31 e57a8990ae56f657a59c435a0613c5f7a8728003
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
package com.jcdm.framework.web.domain.server;
 
import com.jcdm.common.utils.Arith;
 
/**
 * 內存相关信息
 * 
 * @author jc
 */
public class Mem
{
    /**
     * 内存总量
     */
    private double total;
 
    /**
     * 已用内存
     */
    private double used;
 
    /**
     * 剩余内存
     */
    private double free;
 
    public double getTotal()
    {
        return Arith.div(total, (1024 * 1024 * 1024), 2);
    }
 
    public void setTotal(long total)
    {
        this.total = total;
    }
 
    public double getUsed()
    {
        return Arith.div(used, (1024 * 1024 * 1024), 2);
    }
 
    public void setUsed(long used)
    {
        this.used = used;
    }
 
    public double getFree()
    {
        return Arith.div(free, (1024 * 1024 * 1024), 2);
    }
 
    public void setFree(long free)
    {
        this.free = free;
    }
 
    public double getUsage()
    {
        return Arith.mul(Arith.div(used, total, 4), 100);
    }
}