making a jar file for console
- by user472221
Hi
I have a program without a GUI and I use console! So first I read a line from a user from console
BufferedReader userReader = new BufferedReader(new InputStreamReader(System.in));
and then I will write an answer for the user in the console!
System.out.println("Server:"+output);
I want to create a jar file for it ! but how can i show my console in jar file with out using GUI?
please help me thanks.