How can I create a string stream to write to?
satya - Monday, December 17, 2007 10:05:41 AM
Then there is the printwriter
satya - Monday, December 17, 2007 10:14:56 AM
You can do this
StringWriter s = new StringWriter();
PrintWriter out = new PrintWriter(s);
...write something to out
StringBuffer output = s.getBuffer();