320x100 728x90 java18 JAVA]알고리즘]입력 받은 문자열의 보안 레벨 확인하기 import java.util.Scanner; public class passWordSecurity { public static void main(String[] args) { String securityLevel = ""; System.out.println("보안 레벨을 확인 할 문자를 입력하세요. :"); Scanner scan = new Scanner(System.in); String msg = scan.nextLine(); System.out.println("입력 받은 값 : " + msg); for (int i = 0; i < msg.length(); i++) { // 입력받은 문자열의 i번째가 숫자인지 확인 if (Character.isDigit(msg.charAt(i)) == true) {/.. 2020. 6. 14. [Error]The driver has not received any packets form the server The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. 이클립스를 사용하면서 이와 같은 오류가 발생하였다. 실행을 하게되면 500 내부 서버 오류가 떴고. 이래 저래 해결방법을 찾아보다가 노트북에 연결중인 와이파이를 바꿔주니까 잘 해결됐다. 원인은 문서를 받을 때, 해당 와이파이의 IP주소를 찾지 못하여 난 오류였다. 2020. 5. 20. 이전 1 2 3 4 5 다음 300x250 320x100