250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- git
- SpringBoot
- Source
- AJAX
- Open Source
- 문서
- spring
- 설정
- MSSQL
- PostgreSQL
- Docker
- jpa
- ubuntu
- Python
- Exception
- Spring Boot
- maven
- Thymeleaf
- error
- JDBC
- STS
- Core Java
- myBatis
- JavaScript
- Tomcat
- oracle
- 오픈소스
- MySQL
- Eclipse
- IntelliJ
Archives
- Today
- Total
헤르메스 LIFE
[Core Java] 경과 시간 구하기 본문
728x90
public class DateSample {
static Logger logger = LoggerFactory.getLogger( DateSample.class );
public static void main( String[] args ) {
try {
long start = System.currentTimeMillis(); //시작하는 시점 계산
Thread.sleep( 10000 );
long end = System.currentTimeMillis(); //프로그램이 끝나는 시점 계산
logger.info( "실행 시간 : " + ( end - start ) / 1000.0 + "초" ); //실행 시간 계산 및 출력
} catch ( InterruptedException ie ) {
logger.info( "[InterruptedException] {}", ie.getMessage() );
}
}
결과
INFO : sample.StringSample - 실행 시간 : 10.001초 |
728x90
'Core Java' 카테고리의 다른 글
[Core Java] 람다식을 이용한 List 안에 Map 에서 데이터 찾기 (0) | 2021.01.05 |
---|---|
[Excel] 대용량 Excel 파일 읽기 (0) | 2021.01.02 |
[Source] 문자열 관련 Sample (0) | 2020.12.22 |
[Source] XML 만들기 (0) | 2020.12.20 |
[Source] XML 파싱 (0) | 2020.12.20 |