3 tháng 6, 2007

Đoạn mã Java lấy dung lượng bộ nhớ RAM

public class TestGetRuntime {

public static void main(String[] args) {

Runtime rt = Runtime.getRuntime();
System.out.println("freeMemory "+rt.freeMemory());
System.out.println("maxMemory "+rt.maxMemory());
System.out.println("totalMemory "+rt.totalMemory());

}
}

Không có nhận xét nào: