반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 | static Runtime runtime = Runtime.getRuntime(); public static void main(String[] args) { // -Xmx long max = runtime.maxMemory() / 1024 / 1024; // -Xms long total = runtime.totalMemory() / 1024 / 1024; long free = runtime.freeMemory() / 1024 / 1024; System.out.println(String.format("Max: %,dMB, Total: %,dMB, Free: %,dMB, Used: %,dMB", max, total, free, total - free)); } |
결과
Max: 1,796MB, Total: 123MB, Free: 121MB, Used: 2MB |
반응형
'java' 카테고리의 다른 글
java - zip, unzip (0) | 2019.02.18 |
---|---|
java - spring boot - multipart max file size (0) | 2019.02.18 |
com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field (0) | 2019.02.11 |
Apache POI 3.14 Exception - The maximum column width for an individual cell is 255 characters. (0) | 2019.02.08 |
java jdk 1.8 Base64 (0) | 2019.01.03 |
@EnableScheduling, @Profile, @Scheduled 스케쥴링 된 함수 한번만 실행하기. (0) | 2018.12.10 |
mybatis sql include property (0) | 2018.11.08 |
java simple get random alphanumeric string 간단 랜덤 함수 (0) | 2018.11.07 |