String repository for Reader/Writer.
//p("getReader()"); if (content == null) { if (stringWriter == null) { throw new JspException( "content must first be added to the bean via the writer"); } content = stringWriter.toString(); } return new StringReader(content);
//p("getWriter()"); content = null; stringWriter = new StringWriter(); return stringWriter;
System.out.println("[IOBean] " + s);
stringWriter = null; content = null;