HidePasswordFromCommandLine.java :  » Game » acquireproject » common » Java Open Source

Java Open Source » Game » acquireproject 
acquireproject » common » HidePasswordFromCommandLine.java
package common;

public class HidePasswordFromCommandLine extends Thread
{
  public boolean stopThread = false;
  
  public void run()
  {   
    while(!stopThread)
    {
      System.out.print("\b ");
      
      try 
      {
        sleep( 1 );
      }
      catch(InterruptedException e)
      {
      }
    }
    System.out.print("\b"); //removing the last * which was caused by the enter
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.