prateeksharma

Untitled

Jan 10th, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. package readpass;
  2.  
  3. import java.io.*;
  4. public class readpass {
  5. public String pass()
  6. {
  7. Console c=System.console();
  8. if(c==null)
  9. {
  10. System.out.println("error");
  11. System.exit(0);
  12. }
  13. c.printf("testing pass %n");
  14. char Password[]=c.readPassword();
  15. return new String(Password);
  16. }
  17. public static void main(String []a)
  18. {
  19. readpass a1=new readpass();
  20. System.out.println(a1.pass());
  21. }
  22. }
Add Comment
Please, Sign In to add comment