如何在Java中显示输入的星号?

时间:2014-03-20 21:33:57

标签: java

我需要用Java编写一个小程序,要求一个人输入一个Pin代码。 所以我需要用星号(*)而不是数字来隐藏Pin。我怎么能这样做?

到目前为止,这是我的代码:

import java.util.Scanner;
import java.io.*;


public class codePin {

    public static void main(String[] args){

        int pinSize = 0;

        do{
            Scanner pin = new Scanner(System.in);
            System.out.println("Enter Pin: ");
            int str = pin.nextInt();
            String s = new Integer(str).toString();

            pinSize = s.length();

            if(pinSize != 4){
            System.out.println("Your pin must be 4 integers");
            } else {
            System.out.println("We're checking if Pin was right...");
            }

        }while(pinSize != 4);
    }
}

实际上这个程序现在可以使用,但我想添加一个功能来显示像“* * * ”或“ * *”等的Pin ...(当人员进入时在控制台中是自己的Pin)。 我找到了完全隐藏Pin的东西,但我不想要这个。我想要带星号的Pin

有什么想法吗?感谢

2 个答案:

答案 0 :(得分:3)

这样的事情:

import java.io.*;

public class Test {
    public static void main(final String[] args) {
        String password = PasswordField.readPassword("Enter password:");
        System.out.println("Password entered was:" + password);
    }
}


class PasswordField {

   public static String readPassword (String prompt) {
      EraserThread et = new EraserThread(prompt);
      Thread mask = new Thread(et);
      mask.start();

      BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
      String password = "";

      try {
          password = in.readLine();
      } catch (IOException ioe) {
          ioe.printStackTrace();
      }
      et.stopMasking();
      return password;
   }
}   

class EraserThread implements Runnable {
   private boolean stop;

   public EraserThread(String prompt) {
       System.out.print(prompt);
   }

   public void run () {
      while (!stop){
         System.out.print("\010*");
         try {
            Thread.currentThread().sleep(1);
         } catch(InterruptedException ie) {
            ie.printStackTrace();
         }
      }
   }

   public void stopMasking() {
      this.stop = true;
   }
}

答案 1 :(得分:1)

Console类是从命令行读取密码的正确方法。但是,它不会打印星号,因为这通常会泄漏信息(不是在已知PIN为4位数的情况下)。对于类似的东西,你可能需要一个curses库。