返回列表 發帖

【016】資料輸入 (三)

本帖最後由 tonyh 於 2023-1-4 16:34 編輯

利用 readPassword() 方法抓取使用者輸入的密碼.



本帖隱藏的內容需要回復才可以瀏覽

  1. import java.io.Console;

  2. public class A {
  3.     public static void main(String[] args) {
  4.             String str1, str2
  5.         Console c=System.console();
  6.         System.out.print("Enter your account: ");
  7.         str1=c.readLine();
  8.         System.out.print("Enter your password");
  9.         str2=c.readLine();
  10.         System.out.println("Your account: "+str1);
  11.         System.out.print("Your password: "+str2);
  12.         }
  13. }
複製代碼

TOP

返回列表