making a jar file for console
        Posted  
        
            by 
                user472221
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user472221
        
        
        
        Published on 2010-12-21T08:50:37Z
        Indexed on 
            2010/12/21
            8:54 UTC
        
        
        Read the original article
        Hit count: 246
        
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.
© Stack Overflow or respective owner