Store Output Stream into String
843838Apr 25 2006 — edited May 7 2006Hello
I want to store my out put stream in to string so that i can use it latter.
out.println("Nilesh patel");
out.println("nileshpatel7048@yahoo.com");
out.println("Ahmedabad");
it is "Nilesh patel nileshpatel7048@yahoo.com Ahmedabad" but i want to store into string like
String tmp = out.toString();
it is return the hash code of out object how can i store this value in String variable?