Package org.nutz.lang.stream

Examples of org.nutz.lang.stream.StringReader


   * @param cs
   *            文本
   * @return 文本输出流对象
   */
  public static Reader inr(CharSequence cs) {
    return new StringReader(cs);
  }
View Full Code Here


        dataSource.getProxyFilters().add(new FilterAdapter() {

            @Override
            public java.io.Reader resultSet_getCharacterStream(FilterChain chain, ResultSetProxy result, int columnIndex)
                                                                                                                         throws SQLException {
                return new StringReader("");
            }

            @Override
            public java.io.Reader resultSet_getCharacterStream(FilterChain chain, ResultSetProxy result, String columnLabel)
                                                                                                                            throws SQLException {
                return new StringReader("");
            }
        });
        dataSource.init();
    }
View Full Code Here

TOP

Related Classes of org.nutz.lang.stream.StringReader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.