阿里云oss完成简单上传
作者:互联网
官方文档:https://help.aliyun.com/document_detail/84781.html?spm=a2c4g.11186623.6.961.435d26fdrmK6Bv
1.安装
添加图中的依赖:
<dependency>
<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
<version>3.10.2</version>
</dependency>
2.找到简单上传中的文件上传
复制代码:
// yourEndpoint填写Bucket所在地域对应的Endpoint。以华东1(杭州)为例,Endpoint填写为https://oss-cn-hangzhou.aliyuncs.com。
String endpoint = "yourEndpoint";
// 阿里云账号AccessKey拥有所有API的访问权限,风险很高。强烈建议您创建并使用RAM用户进行API访问或日常运维,请登录RAM控制台创建RAM用户。
String accessKeyId = "yourAccessKeyId";
String accessKeySecret = "yourAccessKeySecret";
// 创建OSSClient实例。
OSS ossClient = new OSSClientBuilder().build(endpoint, accessKeyId, accessKeySecret);
// 填写本地文件的完整路径。如果未指定本地路径,则默认从示例程序所属项目对应本地路径中上传文件流。
InputStream inputStream = new FileInputStream("F:\\壁纸\\wallpaper.jpg");
// 填写Bucket名称和Object完整路径。Object完整路径中不能包含Bucket名称。
ossClient.putObject("examplebucket", "wallpaper.jpg", inputStream);
// 关闭OSSClient。
ossClient.shutdown();
System.out.println("上传完成!!!!");
第一行代码填写的是地域节点:
accessKeyId 与accessKeySecret 填写的是RAM访问控制的账号密码:
对应
String accessKeyId = "yourAccessKeyId";
String accessKeySecret = "yourAccessKeySecret";
最后将你要上传的文件路径写好然后运行就可以上传了。
标签:String,oss,RAM,accessKeyId,阿里,填写,上传 来源: https://blog.csdn.net/weixin_43919497/article/details/115430048