Class java.io.StringWriter
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.io.StringWriter

Object
   |
   +----Writer
           |
           +----java.io.StringWriter

public class StringWriter
extends Writer
A character stream that collects its output in a string buffer, which can then be used to construct a string.

Version:
1.6, 98/07/01
Author:
Mark Reinhold
Since:
JDK1.1

Constructor Index

 o java.io.StringWriter()
Create a new string writer, using the default initial string-buffer size.
 o java.io.StringWriter(int)
Create a new string writer, using the specified initial string-buffer size.

Method Index

 o close()
Close the stream.
 o flush()
Flush the stream.
 o getBuffer()
Return the string buffer itself.
 o toString()
Return the buffer's current value as a string.
 o write(int)
Write a single character.
 o write(char[], int, int)
Write a portion of an array of characters.
 o write(String)
Write a string.
 o write(String, int, int)
Write a portion of a string.

Constructors

 o StringWriter
public StringWriter()
Create a new string writer, using the default initial string-buffer size.

 o StringWriter
protected StringWriter(int initialSize)
Create a new string writer, using the specified initial string-buffer size.

Methods

 o close
public void close()
Close the stream. This method does not release the buffer, since its contents might still be required.

Overrides:
close in class Writer
 o flush
public void flush()
Flush the stream.

Overrides:
flush in class Writer
 o getBuffer
public java.lang.StringBuffer getBuffer()
Return the string buffer itself.

 o toString
public java.lang.String toString()
Return the buffer's current value as a string.

Overrides:
toString in class Object
 o write
public void write(int c)
Write a single character.

Overrides:
write in class Writer
 o write
public void write(char cbuf,
                  int off,
                  int len)
Write a portion of an array of characters.

Parameters:
cbuf - Array of characters
off - Offset from which to start writing characters
len - Number of characters to write
Overrides:
write in class Writer
 o write
public void write(String str)
Write a string.

Overrides:
write in class Writer
 o write
public void write(String str,
                  int off,
                  int len)
Write a portion of a string.

Parameters:
str - String to be written
off - Offset from which to start writing characters
len - Number of characters to write
Overrides:
write in class Writer

All Packages  Class Hierarchy  This Package  Previous  Next  Index