一个 JDBC Blob
。如需查看此类的文档,请参阅 java.sql.Blob
。
方法
方法 | 返回类型 | 简介 |
---|---|---|
free() | void | 如需查看此方法的文档,请参阅
java.sql.Blob#free() 。 |
getAppsScriptBlob() | Blob | 获取此 JdbcBlob 的内容作为 Apps 脚本 blob。 |
getAs(contentType) | Blob | 将此对象中的数据作为转换为指定内容类型的 blob 返回。 |
getBytes(position, length) | Byte[] | 有关此方法的文档,请参阅
java.sql.Blob#getBytes(long, int) 。 |
length() | Integer | 如需查看此方法的文档,请参阅
java.sql.Blob#length() 。 |
position(pattern, start) | Integer | 有关此方法的文档,请参阅
java.sql.Blob#position(byte[], long) 。 |
position(pattern, start) | Integer | 有关此方法的文档,请参阅
java.sql.Blob#position(blob, long) 。 |
setBytes(position, blobSource) | Integer | 将 JdbcBlob 写入此 blob 的简便方法。 |
setBytes(position, blobSource, offset, length) | Integer | 将 JdbcBlob 写入此 blob 的简便方法。 |
setBytes(position, bytes) | Integer | 有关此方法的文档,请参阅
java.sql.Blob#setBytes(long, byte[]) 。 |
setBytes(position, bytes, offset, length) | Integer | 有关此方法的文档,请参阅
java.sql.Blob#setBytes(long, byte[], int, int) 。 |
truncate(length) | void | 如需查看此方法的文档,请参阅
java.sql.Blob#truncate(long) 。 |
详细文档
free()
如需查看此方法的文档,请参阅
java.sql.Blob#free()
。
getAs(contentType)
将此对象中的数据作为转换为指定内容类型的 blob 返回。本次 方法会为文件名添加相应的扩展名,例如“myfile.pdf”。不过, 最后一个句点之后的文件名部分(如果有)假定存在 扩展名。因此,“ShoppingList.12.25.2014”会变为 “ShoppingList.12.25.pdf”。
要查看转化次数的每日配额,请参阅 Google 配额 服务。新创建的 Google Workspace 网域可能会暂时适用更严格的条件 配额。
参数
名称 | 类型 | 说明 |
---|---|---|
contentType | String | 要转换为的 MIME 类型。对于大多数 blob,'application/pdf' 为
唯一有效的选项对于 BMP、GIF、JPEG 或 PNG 格式的图片,'image/bmp' 、'image/gif' 、'image/jpeg' 或 'image/png' 中的任何一个也
有效。对于 Google 文档,'text/markdown' 也有效。 |
返回
Blob
- 以 blob 形式表示的数据。
getBytes(position, length)
有关此方法的文档,请参阅
java.sql.Blob#getBytes(long, int)
。
参数
名称 | 类型 | 说明 |
---|---|---|
position | Integer | 要提取的 blob 值中第一个字节的序数位置; 第一个字节位于位置 1。 |
length | Integer | 要复制的连续字节数;长度值必须为零或 。 |
返回
Byte[]
- 一个字节数组,其中包含最多指定数量的 blob 中的连续字节
值。
length()
position(pattern, start)
有关此方法的文档,请参阅
java.sql.Blob#position(byte[], long)
。
参数
名称 | 类型 | 说明 |
---|---|---|
pattern | Byte[] | 要搜索的字节数组。 |
start | Integer | blob 值中要尝试搜索的位置;第一个位置是 1。 |
返回
Integer
- 指定格式开始的位置,否则为 -1
找到。
position(pattern, start)
有关此方法的文档,请参阅
java.sql.Blob#position(blob, long)
。
参数
名称 | 类型 | 说明 |
---|---|---|
pattern | JdbcBlob | JdbcBlob ,表示要搜索的值。 |
start | Integer | blob 值中要尝试搜索的位置;第一个位置是 1。 |
返回
Integer
- 指定格式开始的位置,否则为 -1
找到。
setBytes(position, blobSource)
将 JdbcBlob
写入此 blob 的简便方法。
参数
名称 | 类型 | 说明 |
---|---|---|
position | Integer | 在 blob 中开始写入的位置;第一个位置是 1。 |
blobSource | BlobSource | 要写入此 blob 的数据源。 |
返回
Integer
- 写入的字节数。
setBytes(position, blobSource, offset, length)
将 JdbcBlob
写入此 blob 的简便方法。
参数
名称 | 类型 | 说明 |
---|---|---|
position | Integer | 在 blob 中开始写入的位置;第一个位置是 1。 |
blobSource | BlobSource | 要写入此 blob 的数据源。 |
offset | Integer | 提供的字节数组的偏移量,在该字节数组中开始读取要设置的字节。 |
length | Integer | 要写入 blob 的字节数。 |
返回
Integer
- 写入的字节数。
setBytes(position, bytes)
有关此方法的文档,请参阅
java.sql.Blob#setBytes(long, byte[])
。
参数
名称 | 类型 | 说明 |
---|---|---|
position | Integer | 在 blob 中开始写入的位置;第一个位置是 1。 |
bytes | Byte[] | 要写入此 blob 的字节数组。 |
返回
Integer
- 写入的字节数。
setBytes(position, bytes, offset, length)
有关此方法的文档,请参阅
java.sql.Blob#setBytes(long, byte[], int, int)
。
参数
名称 | 类型 | 说明 |
---|---|---|
position | Integer | 在 blob 中开始写入的位置;第一个位置是 1。 |
bytes | Byte[] | 要写入此 blob 的字节数组。 |
offset | Integer | 提供的字节数组的偏移量,在该字节数组中开始读取要设置的字节。 |
length | Integer | 要写入 blob 的字节数。 |
返回
Integer
- 写入的字节数。