본문 바로가기
Web Programing!/JAVA / JSP

[JAVA] 시작과 끝 시간 측정

by 어설픈봉봉이 2019. 9. 18.
반응형
SMALL



long start, end;

start = System.currentTimeMillis();

end = System.currentTimeMillis();

count = (int)(end - start) / 1000;

System.out.println("시간 : " + count + "초");



반응형