获取对象
功能说明
获取指定 Bucket 中的文件内容或下载文件到本地。
方法原型
func (s *ObjectService) Get(ctx context.Context, key string, opt *ObjectGetOptions) (*Response, error)
func (s *ObjectService) GetToFile(ctx context.Context, key, localfile string, opt *ObjectGetOptions) (*Response, error)
请求示例
key := "test/hello.txt"
opt := &cos.ObjectGetOptions{
ResponseContentType: "text/html",
Range: "bytes=0-3",
}
resp, err := client.Object.Get(context.Background(), key, opt)
bs, _ = ioutil.ReadAll(resp.Body)
resp.Body.Close()
fmt.Printf("%s\n", string(bs))
_, err = c.Object.GetToFile(context.Background(), name, "hello_1.txt", nil)
if err != nil {
panic(err)
}
参数说明
type ObjectGetOptions struct {
ResponseContentType string
ResponseContentLanguage string
ResponseExpires string
ResponseCacheControl string
ResponseContentDisposition string
ResponseContentEncoding string
Range string
IfModifiedSince string
}
参数名称 | 参数描述 | 类型 | 必填 |
---|
key | 对象键(Key)是对象在存储桶中的唯一标识。例如,在对象的访问域名 bucket1-1250000000.cos.ap-guangzhou.myqcloud.com/doc1/pic1.jpg 中,对象键为 doc1/pic1.jpg | string | 是 |
localfile | 设置响应头部 Content-Type | string | 是 |
ResponseContentType | 设置响应头部 Content-Type | string | 否 |
ResponseContentLanguage | 设置响应头部 Content-Language | string | 否 |
ResponseExpires | 设置响应头部 Content-Expires | string | 否 |
ResponseCacheControl | 设置响应头部 Cache-Control | string | 否 |
ResponseContentDisposition | 设置响应头部 Content-Disposition | string | 否 |
ResponseContentEncoding | 设置响应头部 Content-Encoding | string | 否 |
Range | 设置下载文件的范围,格式为 bytes=first-last | string | 否 |
IfModifiedSince | 在指定时间后被修改才返回 | string | 否 |
返回结果说明
{
'Body': '',
'Accept-Ranges': 'bytes',
'Content-Type': 'application/octet-stream',
'Content-Length': '16807',
'Content-Disposition': 'attachment; filename="filename.jpg"',
'Content-Range': 'bytes 0-16086/16087',
'ETag': '"9a4802d5c99dafe1c04da0a8e7e166bf"',
'Last-Modified': 'Wed, 28 Oct 2014 20:30:00 GMT',
'X-Cos-Request-Id': 'NTg3NzQ3ZmVfYmRjMzVfMzE5N182NzczMQ=='
}
参数名称 | 参数描述 | 类型 |
---|
Body | 下载文件的内容 | StreamBody |
文件元信息 | 下载文件的元信息,包括 Etag 和 X-Cos-Request-Id 等信息,也会返回设置的文件元信息 | string |