Composes a stream from a Stringparamsource The string to read from. Must not be null. super(new StringReader(source));
null
super(new StringReader(source));
Composes a stream from a String with the specified encodingparamsource The string to read from. Must not be null.paramencoding The encoding scheme. Also must not be null. super(new StringReader(source), encoding);
super(new StringReader(source), encoding);