I am writing a java
program to print password in log-in page of windows 10 (to get automatically login when I do some action)
I try to use printwriter
to do that .
I managed to print the text inside a text file .
but I want to print the text in password's text box of login page in windows 10
any idea please ..
Thanks
import java.io.*;
class Hasan{
public static void main(String[] args)
try {
PrintWriter writer=PrintWriter(System.out);
writer.write("mypassword");
}
catch (Exception e) {
System.out.println(e);
}
}
}
when I used System.out
I just could printed text in console screen