Working on a project I got into running java applications through a small console-like window. Thanks to the wonderful community in here I managed to solve the problem with outputting the data from a proccess but my command-line applications running will constantly give errors as there is no input stream.
Based on the last helpful reply in that thread I suppose I shall approach similarly the JTextFieldInputStream extends InputStream implementation, but looking in the javadocs and throughout google and the internet for some class that does just that I really found nothing explaining how to do this.
So I am asking for some link, example, tutorial, sample code for it just like in the previous topic. Give me just a class that extends InputStream and can be extended to read from a JTextField when I press Enter and I will do the rest with implementing this and making it work! Thanks in advance!
java HelloWorldInputwhich is command line-based and needs input that I hopefully can retrieve from a JTextField in my application. I cannot provide code, it is about 6 files and a total of 500+ lines of code... :/ – Spiritios Oct 1 '12 at 8:03InputStream is = new ByteArrayInputStream(myTextField.getText().getBytes(Charset.forName("UTF-8")));? – Crozin Oct 1 '12 at 8:29