자바프로그래밍

5. 자바 예외처리

제주도소년 2019. 10. 30. 15:22
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.io.Console;
import java.io.IOException;
public class ConsoleOut {
 public static void main(String[] args) throws IOException {
  Console console = System.console();
  String id = null, strPassword = null;
  try {
   System.out.print("아이디: ");
   id = console.readLine();
 
   System.out.print("패스워드: ");
   char[] charPass = console.readPassword();
   strPassword = new String(charPass);
 
  } catch (NullPointerException e) {
   System.out.println("명령 프롬프트 창에서 입력해야 합니다.");
  } 
 }
}
 
cs

'자바프로그래밍' 카테고리의 다른 글

인터페이스  (0) 2020.02.11
class Object  (0) 2020.02.05
4. 자바 성적처리(클래스)  (0) 2019.10.30
3. 자바 성적처리 프로그램  (0) 2019.10.30
2. 자바 별찍기  (0) 2019.10.30