VastbaseG100

基于openGauss内核开发的企业级关系型数据库。

Menu

ReaderInputStream类

功能描述

ReaderInputStream接受UTF-16字符流(Reader)作为输入,并将其转换为UTF-8字节流(InputStream)作为输出。

close

功能描述

重写:InputStream类的close方法。

语法格式

public void close()
           throws IOException

read()

功能描述

定义:InputStream类的read方法。

语法格式

public int read()
         throws IOException

read(byte[] b, int off, int len)

功能描述

定义:InputStream类的read方法。

语法格式

public int read(byte[] b,
                int off,
                int len)
         throws IOException