I have an Inputstream (the stuff what the user is typing into the consol, System.in.read();)
Now i want to put this InputStream later into a String it looks something like that:
InputStream input = System.in;
StringBuffer out = new StringBuffer();
byte[] b = new byte[4096];
for (int n; (n = input.read(b)) != -1;) {
out.append(new String(b, 0, n));
}
System.out.println(out);
I know there are a lot of better ways. But i want to finish this one. The only Problem is with != -1 , it never happens. Whats the int for ENTER? So my for ends.
Thx!
ScannerorBufferedReaderallowed in this assignment? – BalusC May 29 '11 at 22:12