This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.io
class StringWriter

java.lang.Object extended by java.io.Writer extended by java.io.StringWriter
All Implemented Interfaces:
Closeable, Flushable, Appendable

Most common way to construct:

StringWriter sw = new StringWriter();

Based on 770 examples


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.

Closing a StringWriter has no effect. The methods in this class can be called after the stream has been closed without generating an IOException.

See Also (auto-generated):

Document

PrintWriter

TransformerFactory


Field Summary
 
Fields inherited from class java.io.Writer
lock
 
Constructor Summary

          Create a new string writer using the default initial string-buffer size.
StringWriter(int initialSize)

          Create a new string writer using the specified initial string-buffer size.
 
Method Summary
 StringWriter
append(char c)

          Appends the specified character to this writer.
 StringWriter

          Appends the specified character sequence to this writer.
 StringWriter
append(CharSequence csq, int start, int end)

          Appends a subsequence of the specified character sequence to this writer.
 void

          Closing a StringWriter has no effect.
 void

          Flush the stream.
 StringBuffer

          Return the string buffer itself.
 String

          Return the buffer's current value as a string.
 void
write(char[] cbuf, int off, int len)

          Write a portion of an array of characters.
 void
write(int c)

          Write a single character.
 void

          Write a string.
 void
write(String str, int off, int len)

          Write a portion of a string.
 
Methods inherited from class java.io.Writer
append, append, append, close, flush, write, write, write, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StringWriter

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


StringWriter

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

Parameters:
initialSize - The number of char values that will fit into this buffer before it is automatically expanded
Method Detail

append

public StringWriter append(char c)
Appends the specified character to this writer.

An invocation of this method of the form out.append(c) behaves in exactly the same way as the invocation

     out.write(c) 

Overrides:
append in class Writer
Parameters:
c - The 16-bit character to append
Returns:
This writer

append

public StringWriter append(CharSequence csq)
Appends the specified character sequence to this writer.

An invocation of this method of the form out.append(csq) behaves in exactly the same way as the invocation

     out.write(csq.toString()) 

Depending on the specification of toString for the character sequence csq, the entire sequence may not be appended. For instance, invoking the toString method of a character buffer will return a subsequence whose content depends upon the buffer's position and limit.

Overrides:
append in class Writer
Parameters:
csq - The character sequence to append. If csq is null, then the four characters "null" are appended to this writer.
Returns:
This writer

append

public StringWriter append(CharSequence csq,
                           int start,
                           int end)
Appends a subsequence of the specified character sequence to this writer.

An invocation of this method of the form out.append(csq, start, end) when csq is not null, behaves in exactly the same way as the invocation

     out.write(csq.subSequence(start, end).toString()) 

Overrides:
append in class Writer
Parameters:
csq - The character sequence from which a subsequence will be appended. If csq is null, then characters will be appended as if csq contained the four characters "null".
start - The index of the first character in the subsequence
end - The index of the character following the last character in the subsequence
Returns:
This writer

close

public void close()
           throws IOException
Closing a StringWriter has no effect. The methods in this class can be called after the stream has been closed without generating an IOException.

Overrides:
close in class Writer
Throws:
IOException

flush

public void flush()
Flush the stream.

Overrides:
flush in class Writer

getBuffer

public StringBuffer getBuffer()
Return the string buffer itself.

Returns:
StringBuffer holding the current buffer value.

toString

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

Overrides:
toString in class Object

write

public void write(char[] cbuf,
                  int off,
                  int len)
Write a portion of an array of characters.

Overrides:
write in class Writer
Parameters:
cbuf - Array of characters
off - Offset from which to start writing characters
len - Number of characters to write

write

public void write(int c)
Write a single character.

Overrides:
write in class Writer
Parameters:
c

write

public void write(String str)
Write a string.

Overrides:
write in class Writer
Parameters:
str

write

public void write(String str,
                  int off,
                  int len)
Write a portion of a string.

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


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.