【197】JAVA8调用阿里云对象存储API,保存图片并获取图片URL地址。

实际工作中,需要用阿里云对象存储保存图片,并且在上传图片到阿里云对象存储服务器后,获取图片在阿里云对象存储服务器的URL地址,以便给 WEB 前端显示。

阿里云对象存储上传图片的工具类

java 复制代码
package zhangchao;

import com.aliyun.oss.ClientException;
import com.aliyun.oss.OSS;
import com.aliyun.oss.OSSClientBuilder;
import com.aliyun.oss.OSSException;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.URL;
import java.util.Date;
import java.util.UUID;

/**
 * 阿里云对象存储工具类
 */
public class OSSUtils {
    // OSS阿里云对象存储的AK和SK
    private static final String OSS_AK = "yourAK";
    private static final String OSS_SK = "yourSK";
    // OSS阿里云对象存储的Bucket名称
    private static final String OSS_BUCKET_NAME = "your-files";
    // Endpoint以华东1(杭州)为例,其它Region请按实际情况填写。
    private static final String OSS_ENDPOINT = "https://oss-cn-hangzhou.aliyuncs.com";


    /**
     * 上传图片并返回图片URL
     * @return 图片URL
     */
    public static String uploadImage(String imageFilePath) {
        String result = null;
        // 创建OSSClient实例。
        OSS ossClient = new OSSClientBuilder().build(OSS_ENDPOINT, OSS_AK, OSS_SK);

        FileInputStream fis = null;
        try {
            // 创建存储空间。
            fis = new FileInputStream(imageFilePath);
            String uuid = UUID.randomUUID().toString().replaceAll("-", "");
            ossClient.putObject(OSS_BUCKET_NAME, uuid, fis);

            // 设置URL过期时间为10年 3600l * 1000 * 24 * 365 * 10
            Date expiration = new Date(System.currentTimeMillis() + 3600L * 1000L *
                    24L * 365L * 10L);
            URL url = ossClient.generatePresignedUrl(OSS_BUCKET_NAME, uuid, expiration);
            if (url != null) {
                result = url.toString();
            }
        } catch (OSSException oe) {
            StringBuilder sb = new StringBuilder();
            sb.append("Caught an OSSException, which means your request made it to OSS, ")
                    .append("but was rejected with an error response for some reason.");
            sb.append("Error Message:").append(oe.getErrorMessage());
            sb.append("Error Code:").append(oe.getErrorCode());
            sb.append("Request ID:").append(oe.getRequestId());
            sb.append("Host ID:").append(oe.getHostId());
            System.out.println(sb.toString());
        } catch (ClientException ce) {
            StringBuilder sb = new StringBuilder();
            sb.append("Caught an ClientException, which means the client encountered ")
                    .append("a serious internal problem while trying to communicate with OSS, ")
                    .append("such as not being able to access the network.");
            sb.append("Error Message:" + ce.getMessage());
            System.out.println(sb.toString());
            ce.printStackTrace();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } finally {
            try {
                if (null != fis) {
                    fis.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
            if (ossClient != null) {
                ossClient.shutdown();
            }
        }
        return result;
    }
}

调用的 main 方法:

java 复制代码
package zhangchao;

public class Main {
    public static void main(String[] args) {
        String imgUrl = OSSUtils.uploadImage("E:\\ws\\zc\\Java8OSSImg\\src\\main\\resources\\q1.jpg");
        System.out.println(imgUrl);
    }
}

运行结果,这里显示了返回的图片 URL 地址:

bash 复制代码
https://your-files.oss-cn-hangzhou.aliyuncs.com/abc123?Expires=2021599742&OSSAccessKeyId=youAK&Signature=xxxxxx

这个地址没办法用浏览器直接看,需要写个HTML来测试一下。

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <img src="https://your-files.oss-cn-hangzhou.aliyuncs.com/abc123?Expires=2021599742&OSSAccessKeyId=youAK&Signature=xxxxxx">
</body>
</html>
相关推荐
北极无雪22 分钟前
Spring源码学习(拓展篇):SpringMVC中的异常处理
java·开发语言·数据库·学习·spring·servlet
VXbishe29 分钟前
(附源码)基于springboot的“我来找房”微信小程序的设计与实现-计算机毕设 23157
java·python·微信小程序·node.js·c#·php·课程设计
YONG823_API1 小时前
电商平台数据批量获取自动抓取的实现方法分享(API)
java·大数据·开发语言·数据库·爬虫·网络爬虫
扬子鳄0081 小时前
java注解的处理器
java
Amagi.1 小时前
Spring中Bean的作用域
java·后端·spring
2402_857589361 小时前
Spring Boot新闻推荐系统设计与实现
java·spring boot·后端
繁依Fanyi1 小时前
旅游心动盲盒:开启个性化旅行新体验
java·服务器·python·算法·eclipse·tomcat·旅游
J老熊2 小时前
Spring Cloud Netflix Eureka 注册中心讲解和案例示范
java·后端·spring·spring cloud·面试·eureka·系统架构
蜜桃小阿雯2 小时前
JAVA开源项目 旅游管理系统 计算机毕业设计
java·开发语言·jvm·spring cloud·开源·intellij-idea·旅游
CoderJia程序员甲2 小时前
重学SpringBoot3-集成Redis(四)之Redisson
java·spring boot·redis·缓存