Amazon S3 对象存储Java API操作记录(Minio与S3 SDK两种实现)
Posted Hellxz博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Amazon S3 对象存储Java API操作记录(Minio与S3 SDK两种实现)相关的知识,希望对你有一定的参考价值。
缘起
今年(2023年) 2月的时候做了个适配Amazon S3对象存储接口的需求,由于4月份自学考试临近,一直在备考就拖着没总结记录下,开发联调过程中也出现过一些奇葩的问题,最近人刚从考试缓过来顺手记录一下。
S3对象存储的基本概念
S3是什么?
Amazon S3(Simple Storage Service)对象存储出现得比较早且使用简单的RESTful API,于是成为了对象存储服务(Object Storage Service,OSS)业内的标准接口规范。
S3的逻辑模型
如下图,我们可以把S3的存储空间想象成无限的,想存储一个任意格式的文件到S3服务中,只需要知道要把它放到哪个桶(Bucket)中,它的名字(Object Id)应该是什么。
按图中的模型,可简单理解为S3是由若干个桶(Bucket)组成,每个桶中包含若干个不同标识的对象(Object),还有就是统一的访问入口(RESTful API),这样基本就足够了。
Minio客户端方式操作S3
详细API文档:https://min.io/docs/minio/linux/developers/java/API.html
以下代码异常处理做了简化,真实使用时请注意捕获异常做处理。
引入依赖
Maven:
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>8.5.2</version>
</dependency>
Gradle:
dependencies
implementation("io.minio:minio:8.5.2")
初始化客户端
private static final String HTTP_PROTOCOL = "http";
private MinioClient minioClient;
private String endpoint = "http://192.168.0.8:9200";
private String accessKey = "testKey";
private String secretKey = "testSecretKey";
public void init() throws MalformedURLException
URL endpointUrl = new URL(endpoint);
try
// url上无端口号时,识别http为80端口,https为443端口
int port = endpointUrl.getPort() != -1 ? endpointUrl.getPort() : endpointUrl.getDefaultPort();
boolean security = HTTP_PROTOCOL.equals(endpointUrl.getProtocol()) ? false : true;
//@formatter:off
this.minioClient = MinioClient.builder().endpoint(endpointUrl.getHost(), port, security)
.credentials(accessKey, secretKey).build();
//@formatter:on
// 忽略证书校验,防止自签名证书校验失败导致无法建立连接
this.minioClient.ignoreCertCheck();
catch (Exception e)
e.printStackTrace();
建桶
public boolean createBucket(String bucket)
try
minioClient.makeBucket(MakeBucketArgs.builder().bucket(bucket).build());
catch (Exception e)
e.printStackTrace();
return false;
return true;
删桶
public boolean deleteBucket(String bucket)
try
minioClient.removeBucket(RemoveBucketArgs.builder().bucket(bucket).build());
logger.info("删除桶[]成功", bucket);
catch (Exception e)
e.printStackTrace();
return false;
return true;
判断桶是否存在
public boolean bucketExists(String bucket)
try
return minioClient.bucketExists(BucketExistsArgs.builder().bucket(bucket).build());
catch (Exception e)
e.printStackTrace();
return false;
上传对象
public void upload(String bucket, String objectId, InputStream input)
try
//@formatter:off
minioClient.putObject(PutObjectArgs.builder().bucket(bucket).object(objectId)
.stream(input, input.available(), -1)
.build());
//@formatter:on
catch (Exception e)
e.printStackTrace();
下载对象
提供两个下载方法,一个将输入流返回,另一个用参数输出流写出
public InputStream download(String bucket, String objectId)
try
return minioClient.getObject(GetObjectArgs.builder().bucket(bucket).object(objectId).build());
catch (Exception e)
e.printStackTrace();
return null;
public void download(String bucket, String objectId, OutputStream output)
//@formatter:off
try (InputStream input = minioClient.getObject(
GetObjectArgs.builder().bucket(bucket).object(objectId).build()))
IOUtils.copyLarge(input, output);
catch (Exception e)
e.printStackTrace();
//@formatter:on
删除对象
public boolean deleteObject(String bucket, String objectId)
//@formatter:off
try
minioClient.removeObject(RemoveObjectArgs.builder()
.bucket(bucket).object(objectId).build());
catch (Exception e)
e.printStackTrace();
//@formatter:on
return true;
判断对象是否存在
public boolean objectExists(String bucket, String key)
//@formatter:off
try
// minio客户端未提供判断对象是否存在的方法,此方法中调用出现异常时说明对象不存在
minioClient.statObject(StatObjectArgs.builder()
.bucket(bucket).object(key).build());
catch (Exception e)
return false;
//@formatter:on
return true;
完整代码
import java.io.InputStream;
import java.io.OutputStream;
import java.net.MalformedURLException;
import java.net.URL;
import org.apache.tomcat.util.http.fileupload.IOUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import io.minio.BucketExistsArgs;
import io.minio.GetObjectArgs;
import io.minio.MakeBucketArgs;
import io.minio.MinioClient;
import io.minio.PutObjectArgs;
import io.minio.RemoveBucketArgs;
import io.minio.RemoveObjectArgs;
import io.minio.StatObjectArgs;
public class S3MinioClientDemo
private static final Logger logger = LoggerFactory.getLogger(S3MinioClientDemo.class);
private static final String HTTP_PROTOCOL = "http";
private MinioClient minioClient;
private String endpoint = "http://192.168.0.8:9200";
private String accessKey = "testKey";
private String secretKey = "testSecretKey";
public void init() throws MalformedURLException
URL endpointUrl = new URL(endpoint);
try
// url上无端口号时,识别http为80端口,https为443端口
int port = endpointUrl.getPort() != -1 ? endpointUrl.getPort() : endpointUrl.getDefaultPort();
boolean security = HTTP_PROTOCOL.equals(endpointUrl.getProtocol()) ? false : true;
//@formatter:off
this.minioClient = MinioClient.builder().endpoint(endpointUrl.getHost(), port, security)
.credentials(accessKey, secretKey).build();
//@formatter:on
// 忽略证书校验,防止自签名证书校验失败导致无法建立连接
this.minioClient.ignoreCertCheck();
catch (Exception e)
e.printStackTrace();
public boolean createBucket(String bucket)
try
boolean found = minioClient.bucketExists(BucketExistsArgs.builder().bucket(bucket).build());
if (found)
logger.info("桶名[]已存在", bucket);
return false;
minioClient.makeBucket(MakeBucketArgs.builder().bucket(bucket).build());
catch (Exception e)
e.printStackTrace();
return true;
public boolean deleteBucket(String bucket)
try
minioClient.removeBucket(RemoveBucketArgs.builder().bucket(bucket).build());
logger.info("删除桶[]成功", bucket);
catch (Exception e)
e.printStackTrace();
return false;
return true;
public boolean bucketExists(String bucket)
try
return minioClient.bucketExists(BucketExistsArgs.builder().bucket(bucket).build());
catch (Exception e)
e.printStackTrace();
return false;
public void upload(String bucket, String objectId, InputStream input)
try
//@formatter:off
minioClient.putObject(PutObjectArgs.builder().bucket(bucket).object(objectId)
.stream(input, input.available(), -1)
.build());
//@formatter:on
catch (Exception e)
e.printStackTrace();
public InputStream download(String bucket, String objectId)
try
return minioClient.getObject(GetObjectArgs.builder().bucket(bucket).object(objectId).build());
catch (Exception e)
e.printStackTrace();
return null;
public void download(String bucket, String objectId, OutputStream output)
//@formatter:off
try (InputStream input = minioClient.getObject(
GetObjectArgs.builder().bucket(bucket).object(objectId).build()))
IOUtils.copyLarge(input, output);
catch (Exception e)
e.printStackTrace();
//@formatter:on
public boolean objectExists(String bucket, String objectId)
//@formatter:off
try
// minio客户端未提供判断对象是否存在的方法,此方法中调用出现异常时说明对象不存在
minioClient.statObject(StatObjectArgs.builder()
.bucket(bucket).object(objectId).build());
catch (Exception e)
return false;
//@formatter:on
return true;
public boolean deleteObject(String bucket, String objectId)
//@formatter:off
try
minioClient.removeObject(RemoveObjectArgs.builder()
.bucket(bucket).object(objectId).build());
catch (Exception e)
e.printStackTrace();
//@formatter:on
return true;
public void close()
minioClient = null;
Amazon S3 SDK方式操作S3
官方API文档:https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html
这里由于项目上提供的SDK和文档都是1.x的,这里就暂时只提供1.x的代码
引入依赖
Maven:
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.11.300</version>
</dependency>
Gradle:
dependencies
implementation \'com.amazonaws:aws-java-sdk-s3:1.11.300\'
初始化客户端
private static final Logger logger = LoggerFactory.getLogger(S3SdkDemo.class);
private AmazonS3 s3client;
private String endpoint = "http://192.168.0.8:9200";
private String accessKey = "testKey";
private String secretKey = "testSecretKey";
public void init() throws MalformedURLException
URL endpointUrl = new URL(endpoint);
String protocol = endpointUrl.getProtocol();
int port = endpointUrl.getPort() == -1 ? endpointUrl.getDefaultPort() : endpointUrl.getPort();
ClientConfiguration clientConfig = new ClientConfiguration();
clientConfig.setSignerOverride("S3SignerType");
clientConfig.setProtocol(Protocol.valueOf(protocol.toUpperCase()));
// 禁用证书检查,避免https自签证书校验失败
System.setProperty("com.amazonaws.sdk.disableCertChecking", "true");
// 屏蔽 AWS 的 MD5 校验,避免校验导致的下载抛出异常问题
System.setProperty("com.amazonaws.services.s3.disableGetObjectMD5Validation", "true");
AWSCredentials awsCredentials = new BasicAWSCredentials(accessKey, secretKey);
// 创建 S3Client 实例
AmazonS3 s3client = new AmazonS3Client(awsCredentials, clientConfig);
s3client.setEndpoint(endpointUrl.getHost() + ":" + port);
s3client.setS3ClientOptions(S3ClientOptions.builder().setPathStyleAccess(true).build());
this.s3client = s3client;
建桶
public boolean createBucket(String bucket)
String bucketName = parseBucketName(bucket);
try
if (s3client.doesBucketExist(bucketName))
logger.warn("bucket[]已存在", bucketName);
return false;
s3client.createBucket(bucketName);
catch (Exception e)
e.printStackTrace();
return true;
删桶
public boolean deleteBucket(String bucket)
try
s3client.deleteBucket(bucket);
logger.info("删除bucket[]成功", bucket);
catch (Exception e)
e.printStackTrace();
return false;
return true;
判断桶是否存在
public boolean bucketExists(String bucket)
try
return s3client.doesBucketExist(bucket);
catch (Exception e)
e.printStackTrace();
return false;
上传对象
public void upload(String bucket, String objectId, InputStream input)
try
// 创建文件上传的元数据
ObjectMetadata meta = new ObjectMetadata();
// 设置文件上传长度
meta.setContentLength(input.available());
// 上传
s3client.putObject(bucket, objectId, input, meta);
catch (Exception e)
e.printStackTrace();
下载对象
public InputStream download(String bucket, String objectId)
try
S3Object o = s3client.getObject(bucket, objectId);
return o.getObjectContent();
catch (Exception e)
e.printStackTrace();
return null;
public void download(String bucket, String objectId, OutputStream out)
S3Object o = s3client.getObject(bucket, objectId);
try (InputStream in = o.getObjectContent())
IOUtils.copyLarge(in, out);
catch (Exception e)
e.printStackTrace();
删除对象
public boolean deleteObject(String bucket, String objectId)
try
s3client.deleteObject(bucket, objectId);
catch (Exception e)
e.printStackTrace();
return false;
return true;
判断对象是否存在
public boolean existObject(String bucket, String objectId)
try
return s3client.doesObjectExist(bucket, objectId);
catch (Exception e)
e.printStackTrace();
return false;
完整代码
import java.io.InputStream;
import java.io.OutputStream;
import java.net.MalformedURLException;
import java.net.URL;
import org.apache.tomcat.util.http.fileupload.IOUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.amazonaws.ClientConfiguration;
import com.amazonaws.Protocol;
import com.amazonaws.auth.AWSCredentials;
import com.amazonaws.auth.BasicAWSCredentials;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3Client;
import com.amazonaws.services.s3.S3ClientOptions;
import com.amazonaws.services.s3.model.ObjectMetadata;
import com.amazonaws.services.s3.model.S3Object;
/**
* S3对象存储官方SDK实现
*
* @author ZhangChenguang
* @date 2023年2月2日
*/
@SuppressWarnings("deprecation")
public class S3SdkDemo
private static final Logger logger = LoggerFactory.getLogger(S3SdkDemo.class);
private AmazonS3 s3client;
private String endpoint = "http://192.168.0.8:9200";
private String accessKey = "testKey";
private String secretKey = "testSecretKey";
public void init() throws MalformedURLException
URL endpointUrl = new URL(endpoint);
String protocol = endpointUrl.getProtocol();
int port = endpointUrl.getPort() == -1 ? endpointUrl.getDefaultPort() : endpointUrl.getPort();
ClientConfiguration clientConfig = new ClientConfiguration();
clientConfig.setSignerOverride("S3SignerType");
clientConfig.setProtocol(Protocol.valueOf(protocol.toUpperCase()));
// 禁用证书检查,避免https自签证书校验失败
System.setProperty("com.amazonaws.sdk.disableCertChecking", "true");
// 屏蔽 AWS 的 MD5 校验,避免校验导致的下载抛出异常问题
System.setProperty("com.amazonaws.services.s3.disableGetObjectMD5Validation", "true");
AWSCredentials awsCredentials = new BasicAWSCredentials(accessKey, secretKey);
// 创建 S3Client 实例
AmazonS3 s3client = new AmazonS3Client(awsCredentials, clientConfig);
s3client.setEndpoint(endpointUrl.getHost() + ":" + port);
s3client.setS3ClientOptions(S3ClientOptions.builder().setPathStyleAccess(true).build());
this.s3client = s3client;
public boolean createBucket(String bucket)
try
s3client.createBucket(bucket);
catch (Exception e)
e.printStackTrace();
return true;
public boolean deleteBucket(String bucket)
try
s3client.deleteBucket(bucket);
logger.info("删除bucket[]成功", bucket);
catch (Exception e)
e.printStackTrace();
return false;
return true;
public boolean bucketExists(String bucket)
try
return s3client.doesBucketExist(bucket);
catch (Exception e)
e.printStackTrace();
return false;
public void upload(String bucket, String objectId, InputStream input)
try
// 创建文件上传的元数据
ObjectMetadata meta = new ObjectMetadata();
// 设置文件上传长度
meta.setContentLength(input.available());
// 上传
s3client.putObject(bucket, objectId, input, meta);
catch (Exception e)
e.printStackTrace();
public InputStream download(String bucket, String objectId)
try
S3Object o = s3client.getObject(bucket, objectId);
return o.getObjectContent();
catch (Exception e)
e.printStackTrace();
return null;
public void download(String bucket, String objectId, OutputStream out)
S3Object o = s3client.getObject(bucket, objectId);
try (InputStream in = o.getObjectContent())
IOUtils.copyLarge(in, out);
catch (Exception e)
e.printStackTrace();
public boolean existObject(String bucket, String objectId)
try
return s3client.doesObjectExist(bucket, objectId);
catch (Exception e)
e.printStackTrace();
return false;
public boolean deleteObject(String bucket, String objectId)
try
s3client.deleteObject(bucket, objectId);
catch (Exception e)
e.printStackTrace();
return false;
return true;
public void close()
s3client = null;
遇到的问题
1、bucket名称必须是小写,不支持下划线
- 处理方式:写方法转换下bucket名称,将大写转小写,将下划线替换为中划线。
2、minio客户端下载非官方S3存储的文件时,如果响应头的Content-Length与实际文件大小不符,会导致minio客户端包装的okhttp3报错
报错信息:
Caused by: java.net.ProtocolException: unexpected end of stream
at okhttp3.internal.http1.Http1ExchangeCodec$FixedLengthSource.read(Http1ExchangeCodec.java:430) ~[okhttp-3.14.9.jar:?]
at okhttp3.internal.connection.Exchange$ResponseBodySource.read(Exchange.java:286) ~[okhttp-3.14.9.jar:?]
at okio.RealBufferedSource$1.read(RealBufferedSource.java:447) ~[okio-1.17.2.jar:?]
at com.jiuqi.nr.file.utils.FileUtils.writeInput2Output(FileUtils.java:83) ~[nr.file-2.5.7.jar:?]
at com.jiuqi.nr.file.impl.FileAreaServiceImpl.download(FileAreaServiceImpl.java:395) ~[nr.file-2.5.7.jar:?]
... 122 more
抓包发现问题的图:
最终换成了S3官方SDK可用了。
PS:客户现场部署的S3是浪潮公司提供的,如果现场遇到这个情况,就不要固执去找对方对线了,完全没用。。
总结
S3存储的基本操作就记录到这里了,由于没有S3存储就没尝试官方SDK的V2版本,由于这些代码是总结时从业务代码里抽取出来的,可能会有点问题,但大体思路已经有了。
希望对读者有所用处,觉得写得不错和有帮到你,欢迎点个赞,您的支持就是我的鼓励!
必须记的BOM常用api及DOM对象下常用api
-
EcmaScript js基础语法
-
BOM 浏览器相关 浏览器对象模型、
-
DOM 文档对象模型 操作html
BOM
window对象
是js顶层对象,全局对象 window属性和方法,都可以省略window直接使用
window:是浏览器
BOM相关api,基本都是 window对象的
BOM相关api
?
alert() window.alert(); 弹窗
prompt(); window.prompt() 弹窗接受用户输入信息
confirm() 确认框
返回值:当用户点击确认时,返回true,点击取消 返回 false
history对象
history对象,主要保存,浏览器 历史记录相关的信息
三个方法
history.forward() 前进一步
history.back() 后退一步
history.go()
go(1) 前进一步
go(0) 刷新
go(-1) 后退一步
location对象
保存的是浏览器地址栏相关信息:获取当前窗口地址,可以改变当前窗口的地址
href属性 保存了当前窗口的地址(完整的地址)
获取href属性,获取了当前地址 改变了href属性,跳转页面
reload() 方法 刷新
navigator 记录浏览器一些基本信息 属性 可以不记
userAgent 记录浏览器基本信息
- navigator.appName` 获取当前浏览器的名称
- `navigator.appVersion` 获取当前浏览器的版本号
- `navigator.platform` 获取当前计算机的操作系统
open方法 close方法
打开和关闭窗口
open(url,target,style)
三个参数:
?
• 1,url
?
• 2,打开方式 _self _blank 默认_blank
?
• 3,外观
?
• "width=300,height=300,left=300,top=300"
返回值:打开的网页的window对象
close([window])
要关闭的网页的window对象 如果没有默认是当前网页的window
浏览器窗口尺寸相关
- window.innerHeight - 浏览器窗口的内部高度
- window.innerWidth - 浏览器窗口的内部宽度 包含滚动条
可视区宽高:
document.documentElement.clientWidth 可视区 宽度 不包含滚动条
document.documentElement.clientHeight 可视区 高度 不包含滚动条
滚动距离
document.documentElement.scrollTop IE其他浏览器
document.documentElement.scrollLeft //横向
document.body.scrollTop 低版本chrome
滚动事件
scroll 鼠标滚轮滚动或者点击滚动条
window.onscroll=function()
load事件
网页加载事件:等待网页html/css资源加载完毕后触发
注意:
一个html文件中只能出现一次,如果出现多次,下面会覆盖上面的
使用场景:
如果js写在头部,应该将所有的js代码,扔进window.onload事件中,否则获取不了元素
DOM
document object model 文档对象模型 操作html
document是最大的dom对象
dom对象:js中把标签,称为dom对象
获取元素
-
通过元素的id获取
document.getElementById("id名字")
返回值:dom对象
-
通过元素的标签名获取
document.getElementsByTagName("标签名")
返回值: 类数组
注意:
前面的document也可以是别的dom对象,只要是它的祖先元素就可以,在祖先元素的范围内去找某些标签
好处:范围进一步缩小
-
通过 元素的 类名来获取元素 IE8以下不支持
document.getElementsByClassName("class值")
返回值:类数组
注意: 前面的document也可以是别的dom对象,只要是它的祖先元素就可以,在祖先元素的范围内去找某些标签
好处:范围进一步缩小
新增 h5选择器
document.querySelector("css选择器")
找到第一个符合条件的元素,就立即返回,返回是dom对象
document.querySelectorAll("css选择器")
找到所有的符合条件的元素,返回的数类数组
元素属性操作
获取元素的属性
?
• 元素.getAttribute("属性名"); *****
?
设置元素的属性
?
• 元素.setAttribute("属性名",值); 了解
?
移除一个元素的属性
?
• 元素.removeAttribute("属性名"); 了解
dom对象也是对象 具备对象的基础语法
获取:
元素.属性名
元素[‘属性名‘]
设置
元素.属性名=值
元素[‘属性名‘]=值
nodeName:"DIV",
innerHTML:"内容",
className:"class属性",
style:
dom对象:在html中自定义的属性,是不在dom中的,就不能通过对象名.属性名,js为了方便使用,封装了方法 getAttribute() 可以获取自定义属性
总结:
获取元素的属性
元素.属性 可以获取元素本来就有的属性 也可以获取在js中自定义的属性 90%需求
元素[属性] 在属性是一个变量的时候用 5%
getAttribute() 万能 在html中自定的属性, 就用它 5%
设置:
元素.属性 = 值
元素[属性]=值
元素.setAttribute("属性",值)
获取和设置元素的类型
className属性 可以获取 可以设置
元素.className获取
元素.className = 值
获取和设置元素的内容
文本内容
innerText 只包含文本 不包含标签
html内容
innerHTML 包含标签 *
获取元素的样式
js中是通过内联的形式来设置元素的样式
原因:
1,内联的优先级别最高, 保证js代码添加样式一定有效果
2,只针对当前标签有效,不会影响全局的代码
<div style="width:200px;height:200px"></div>
style:
width:"200px",
height:"200px"
元素.style.css属性名 = "值"
注意:
js中是不允许出现 - css属性中有很多连接符 background-color -webkit-transform-origin
去 - 变驼峰
元素.style.backgroundColor
元素.style.WebkitTransformOrigin="center center"
获取内联样式的值
前提:必须通过内联设置某个css属性的值,才能 通过 元素.style.属性 否则没有值
如何给元素绑定事件
js中
元素.on事件名=function()
事件函数
事件函数中this是指向事件源
?
function fn()
元素.on事件名 = fn; //不加括号
在事件中涉及到数组和数组之间一一对应关系
for循环中使用自定义属性
var arr = [1, 2, 3];
for(var i = 0; i < btns.length; i++)
btns[i].num = i;
btns[i].onclick = function()
alert(this.num);
BOM:
history
location
可视区宽高
滚动距离
滚动事件
load事件
dom:都要记
?
?
以上是关于Amazon S3 对象存储Java API操作记录(Minio与S3 SDK两种实现)的主要内容,如果未能解决你的问题,请参考以下文章
我是否需要使用随机哈希作为 Amazon S3 存储桶中对象密钥名称的前缀?