The close() method oStringWriter Class in Java is used to close the writer. Closing a writer deallocates any value in it or any resources associated with it. The StringWriter instance once closed won’t work. Also a StringWriter instance once closed cannot be closed again.
Syntax:
public void close()
Parameters: This method does not accepts any parameter.
Return Value: This method does not returns any value. It just closes the Stream.
Below programs illustrates the working of close() method:
Program 1:
import java.io.*;
class GFG {
public static void main(String[] args)
{
String str = "GeeksForGeeks" ;
try {
StringWriter writer
= new StringWriter();
writer.write(str);
System.out.println(writer.toString());
writer.close();
}
catch (Exception e) {
System.out.println(e);
}
}
}
|
Program 2:
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
StringWriter writer
= new StringWriter();
writer.write( 65 );
System.out.println(writer.toString());
writer.close();
}
catch (Exception e) {
System.out.println(e);
}
}
}
|