Package org.teiid.core.util

Examples of org.teiid.core.util.ReaderInputStream.skip()


    }

    public InputStream getBinaryStream() throws SQLException {
      ReaderInputStream ris = new ReaderInputStream(searchstr.getCharacterStream(), Charset.forName("UTF-16")); //$NON-NLS-1$
      try {
        ris.skip(2);
        return ris;
      } catch (IOException e) {
        throw new SQLException(e);
      }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.