How can I implement and use command prompt commands through the java and see results in java? The command prompt commands are following:
cd Desktop\nikto-2.1.4nikto.pl -h www.cirt.net -ssl .
What I should do in order to be able to use those commands in java and to see results?
I would use ProcessBuilder to set the current directory and run the second command using
cmd.exe. I would combine the error and output and read the output into your Java program.