Runtime runtime = Runtime.getRuntime();
DecimalFormat format = new DecimalFormat("###,###,###.##");
long max = runtime.maxMemory();
long total = runtime.totalMemory();
long free = runtime.freeMemory();
System.out.println("=============================================");
System.out.println("=============================================");
System.out.println("Max : " + format.format(max));
System.out.println("Total : " + format.format(total));
System.out.println("Free : " + format.format(free));
java동작 환경의 메모리 사용량을 확인 할 수 있는 소스 입니다.
반응형
'JAVA' 카테고리의 다른 글
excel파일 생성하는 메소드 (0) | 2015.07.24 |
---|---|
CaseInsensitiveMap (common-collections.jar) (0) | 2015.07.15 |
url결과를 이미지 혹은 pdf로 생성하는 프로그램 (0) | 2015.07.03 |
JAVA 숫자형 데이터 천자리 , 찍기 (0) | 2015.05.15 |
apache configuration을 이용한 XML파일 작업 (0) | 2015.05.15 |