How would I output console information to a GUI? I have a application that has a GUI up till I have the user move within directories similar to the CLI in linux. So how would I port the output and input from a console into a GUI. Would JPanel be the way to go or something else?
Share
Technically, if you wanted to, you could use
JTextAreato accomplish this. Instead of writing to the console what you’d normally write, such as some information telling the programmer that something was successful or unsuccessful (for troubleshooting of course), you can use JTextArea’sappend()method to write what you would normally write on the console. Example:See the API for details