private static void sleep(int millis) {
try {
Thread.sleep(millis);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
'프로그래밍 > 자바' 카테고리의 다른 글
자바에서 파이썬 파일 실행하고 결과 받아 오기 (0) | 2024.02.09 |
---|---|
자바에서 javax.net.ssl.SSLHandshakeException: Remote host terminated the handshake (0) | 2024.02.08 |
자바로 RSI 구하기 (0) | 2024.02.06 |
자바에서 크롬 웹드라이버 실행 파일을 따로 설치하지 않고 크롤링하기[vscode] (0) | 2024.01.17 |
java.net.BindException: Address already in use: bind 에러 (1) | 2023.12.26 |