这里写自定义目录标题
话不多说,先贴完整代码
/**
* 将文件上传到阿里云OOS 上传文件流
*/
public static String uploadFileAliOOS(MultipartFile file, String filename) {
// yourEndpoint填写Bucket所在地域对应的Endpoint。以华东1(杭州)为例,Endpoint填写为https://oss-cn-hangzhou.aliyuncs.com。
String endpoint = "yourEndpoint";
// 阿里云账号AccessKey拥有所有API的访问权限,风险很高。强烈建议您创建并使用RAM用户进行API访问或日常运维,请登录RAM控制台创建RAM用户。
String accessKeyId = "accessKeyId ";
String accessKeySecret = "accessKeySecret ";
// 填写Bucket名称,例如examplebucket。
String bucketName = "bucketName ";
// 填写文件名。文件名包含路径,不包含Bucket名称。例如exampledir/exampleobject.txt。
String objectName = "static/" + filename;
OSS ossClient = null;
try {
// 创建OSSClient实例。
ossClient = new OSSClientBuilder().build(endpoint, accessKeyId, accessKeySecret);
// 填写本地文件的完整路径。如果未指定本地路径,则默认从示例程序所属项目对应本地路径中上传文件流。
InputStream inputStream = file.getInputStream();
// 依次填写Bucket名称(例如examplebucket)和Object完整路径(例如exampledir/exampleobject.txt)。Object完整路径中不能包含Bucket名称。
ossClient.putObject(bucketName, objectName, inputStream);
// 设置失效时间 10年 按照自己需求设置即可
Date expiration = new Date(new Date().getTime() + 3600l * 1000 * 24 * 365 * 100);
// 查询资源url
URL url = ossClient.generatePresignedUrl(bucketName, objectName, expiration);
if (url != null) {
return url.toString();
}
} catch (Exception e) {
e.printStackTrace();
} finally {
// 关闭OSSClient。
ossClient.shutdown();
}
return "";
}
/**
* 将文件上传到阿里云OOS 上传字符串
*/
public static String uploadBytesAliOOS(String files, String filename) {
// 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";
// 填写Bucket名称,例如examplebucket。
String bucketName = "examplebucket";
// 填写文件名。文件名包含路径,不包含Bucket名称。例如exampledir/exampleobject.txt。
String objectName = "static/" + filename;
OSS ossClient = null;
try {
// 创建OSSClient实例。
ossClient = new OSSClientBuilder().build(endpoint, accessKeyId, accessKeySecret);
ossClient.putObject(bucketName, objectName, new ByteArrayInputStream(files.getBytes()));
// 设置失效时间
Date expiration = new Date(new Date().getTime() + 3600l * 1000 * 24 * 365 * 100);
// 查询资源url
URL url = ossClient.generatePresignedUrl(bucketName, objectName, expiration);
if (url != null) {
return url.toString();
}
} catch (OSSException e) {
e.printStackTrace();
} finally {
// 关闭OSSClient。
ossClient.shutdown();
}
return "";
}
以上代码只有文件流和字节方式,阿里云官方文档还有字节数组等方式,模式雷同 只需要替换掉下边这行代码即可
ossClient.putObject(bucketName, objectName, new ByteArrayInputStream(files.getBytes()));//流
ossClient.putObject(bucketName, objectName, new ByteArrayInputStream(files.getBytes()));//字节
阿里云官方文档
https://help.aliyun.com/document_detail/84781.html