本帖最後由 tonyh 於 2021-8-14 20:52 編輯
利用 readPassword() 方法抓取使用者輸入的密碼.
- import java.io.Console;
- public class Ch07
- {
- public static void main(String args[])
- {
- Console c=System.console();
- String name=c.readLine("輸入帳號: ");
- char pw[]=c.readPassword("輸入密碼: ");
- System.out.println("你的帳號: "+name);
- System.out.println("你的密碼: "+String.valueOf(pw));
- }
- }
複製代碼 |