Constructor StringWriter(int initialSize)
Member of: java.io.StringWriter
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 stringWriter = new StringWriter( bufferSize );
2 java.io.StringWriter sw= new java.io.StringWriter(1024);
3 StringWriter sw = new StringWriter(string.length() + 10);
4 StringWriter w = new StringWriter(16 * 1024);
5 java.io.StringWriter w = new java.io.StringWriter(16 * 1024);
6 StringWriter writer = new StringWriter(256);
7 StringWriter writer = new StringWriter(1024);
8 StringWriter variablesBuffer = new StringWriter(1024);
9 this.xmlSource = new StringWriter(4000);
10 queryWriter = new StringWriter(256);
11 StringWriter sw = new StringWriter(nodes.size() * 128);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.