VastbaseG100

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

Menu

BlobOutputStream类

功能描述

这实现了写入大对象的基本输出流。

close

语法格式

public void close()     
throws IOException

功能描述

定义:Closeable接口的close方法,AutoCloseable接口的close方法。

重写:OutputStream类的close方法。

flush

语法格式

public void flush()     
 throws IOException

功能描述

定义:Flushable接口的flush方法。

重写:OutputStream类的flush方法。

write(byte[] buf, int off, int len)

语法格式

public void write(byte[] buf,         
        int off,         
        int len)      
        throws IOException

功能描述

重写:OutputStream类的write方法。

write(int b)

语法格式

public void write(int b)      
throws IOException

功能描述

定义:OutputStream类的write方法。

其他

已实现的接口:Closeable, Flushable, AutoCloseable。