반응형
import java.io.BufferedWriter;
import java.io.OutputStreamWriter;
public class Main {
public static void main(String args[]) {
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
long start = System.currentTimeMillis();
// 수행 코드
long end = System.currentTimeMillis();
bw.write("실행 시간 : " + (end - start) /1000.0 + "초");
bw.flush();
bw.close();
} catch (NumberFormatException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
반응형
'개발(합니다) > Java&Spring' 카테고리의 다른 글
Spring Security 정리(1) : 로그인 화면 (2) | 2019.01.17 |
---|---|
Java에서 배열 동적으로 늘리기 (0) | 2019.01.07 |
Spring HATEOAS 특징과 설정 정리 (0) | 2018.12.19 |
Spring maven project에서 tomcat 실행하기 (0) | 2018.12.18 |
Spring maven project JPA 설정 정리 (0) | 2018.12.17 |