项目中:使用oss阿里云对象存储服务器存、取图片(代码)

一、开始前准备工作
购买并注册阿里云对象存储服务器(价格不算贵)
查看官方文档,练习基本的api
二、展示自己项目中使用
1.pom.xml文件

<dependency>
            <groupId>com.aliyun.oss</groupId>
            <artifactId>aliyun-sdk-oss</artifactId>
            <version>3.10.2</version>
        </dependency>

2.MaterialService :图片上传下载代码实现(提取文件时候加了redis,不需要的可以删除不用)

@Component
public class MaterialService {

    private static final String POINT_CHAR = ".";    
    @Resource
    private RedisCache redisCache;
    @Resource
    private MaterialDao materialDao;

    /**
     * 文件上传
     *
     * @param multipartFile 文件实体
     * @param moduleName    所属模块:作为文件前缀
     * @param userDto       当前用户信息
     */
    public String uploadFile(MultipartFile multipartFile, String moduleName) {
        try {
            String fileName = multipartFile.getOriginalFilename();
            if (StringUtils.isEmpty(fileName)) {
                fileName = "未命名";
            }
            return uploadFile(fileName, multipartFile.getSize(), moduleName, multipartFile.getInputStream());
        } catch (IOException e) {
            return null;
        }
    }
    /**
     * 上传文件至服务器(存取成功会生成uuid,用于之后取图片地址使用)
     *
     * @param fileName    文件名 如:background.png
     * @param inputStream 文件输入流
     */
    public String uploadFile(String fileName, Long fileSize, String moduleName, InputStream inputStream, UserDto userDto) {
        String ext = "";
        String uuid = UUID.randomUUID().toString();
        if (fileName.contains(POINT_CHAR)) {
            ext = fileName.substring(fileName.lastIndexOf(".") + 1);
        }
        try {
            String serverPath = String.format("%s/%s.%s", moduleName, uuid, ext);
            AliOssHelper.upload(serverPath, inputStream);     
        } catch (Exception e) {
            Loggers.error("文件上传失败=>" + e.getMessage());
            uuid = null;
        }
        return uuid;
    }
    /**
     * 通过uuid 获取临时url文件查询地址(这里获取地址有效时间八小时)
     *
     * @param uuid id
     * @return URL
     */
    public URL getSavePath(String uuid) {       
       URL url = AliOssHelper.accessUrl(materialEntity.getServerPath(), 60 * 60 * 8L);
        return url ;
    }
}

3.controller

@RestController
@Api(tags = "文件操作")
@RequestMapping("/file")
public class FileController {
    @Resource
    private MaterialService materialService;


    @GetMapping("/preview/url")
    @ApiOperation(value = "获取文件临时访问地址", notes = "获取文件临时访问地址")
    public Result getFileTempAccessUrl(@ApiParam(name = "guid", value = "文件guid")
                                       @RequestParam String guid) {
        return Result.success(materialService.getSavePath(guid));
    }

    @PostMapping("/upload")
    @ApiOperation(value = "上传文件", notes = "上传文件")
    public Result uploadBidFile(@ApiParam(name = "file", value = "文件实体")
                                @RequestParam MultipartFile file,
                                @ApiParam(name = "module", value = "模块名", required = false)
                                @RequestParam(required = false) String module) throws Exception {
        if (file == null || file.isEmpty()) {
            return Result.error(ResultCode.PARAMS_ERROR);
        }
    
        String fileGuid = materialService.uploadFile(file, module);
        URL previewPath = materialService.getSavePath(fileGuid);       
        Map<String, Object> result = BeanUtils.bean2map(materialEntity);
        result.put("previewPath", previewPath);
        return Result.success(result);
    }

}

4.阿里云api方法,个人账户信息配置

import lombok.Data;
@Data
public class OssProperties {

    private String endPoint;
    private String accessKeyId;
    private String accessKeySecret;
    private String bucketName;

    public OssProperties() {
        this.endPoint = "http://oss-cn-shanghai.aliyuncs.com";
        this.accessKeyId = "XXXX输入自己的keyIdXXXX";
        this.accessKeySecret = "XXXX输入自己的keySecretXXXX";
        this.bucketName = "XXX自己建的文件夹名称XXX";    }

    public OssProperties(String endPoint, String accessKeyId, String accessKeySecret, String bucketName) {
        this.endPoint = endPoint;
        this.accessKeyId = accessKeyId;
        this.accessKeySecret = accessKeySecret;
        this.bucketName = bucketName;
    }
}

api方法(MaterialService 中调用)

public class AliOssHelper {

    public static void main(String[] args) throws Exception {
        //upload("test/bpmprocess.bpmn", new FileInputStream("F://testprocess.bpmn"));
       System.out.println(fileExist("test/5dcb9ad1-d0cd-4899-aac1-cda24e354cc8.bpmn"));
    }

    private static OSS getClient(OssProperties properties) {
        return new OSSClientBuilder().build(properties.getEndPoint(), properties.getAccessKeyId(), properties.getAccessKeySecret());
    }

    /**
     * 上传文件至服务器
     *
     * @param serverPath 文件服务器全路径名
     * @param is         输入流传入
     */
    public static void upload(OssProperties properties, String serverPath, InputStream is) {
        OSS client = getClient(properties);
        client.putObject(properties.getBucketName(), serverPath, is);
        client.shutdown();
    }

    public static void upload(String serverPath, InputStream is) {
        upload(new OssProperties(), serverPath, is);
    }

    /**
     * 下载文件
     *
     * @param serverPath 文件服务器全路径名
     * @param os         输出流接收
     */
    public static void download(OssProperties properties, String serverPath, OutputStream os) {
        OSS client = getClient(properties);
        OSSObject ossObject = client.getObject(properties.getBucketName(), serverPath);
        try {
            byte[] bytes = IOUtils.readStreamAsByteArray(ossObject.getObjectContent());
            os.write(bytes);
            os.close();
        } catch (IOException e) {
            Loggers.error("下载文件错误=>" + e.getMessage());
            e.printStackTrace();
        }
        client.shutdown();
    }

    public static void download(String serverPath, OutputStream os) {
        download(new OssProperties(), serverPath, os);
    }

    /**
     * 判断文件是否存在服务器
     *
     * @param serverPath 文件服务器全路径名
     */
    public static Boolean fileExist(OssProperties properties, String serverPath) {
        OSS client = getClient(properties);
        boolean res = client.doesObjectExist(properties.getBucketName(), serverPath);
        client.shutdown();
        return res;
    }

    public static Boolean fileExist(String serverPath) {
        return fileExist(new OssProperties(), serverPath);
    }

    /**
     * 获取可临时访问的路径
     *
     * @param serverPath 服务器相对路径
     * @param expire     有效期(秒)
     */
    public static URL accessUrl(OssProperties properties, String serverPath, Long expire) {
        OSS client = getClient(properties);
        Date expireTime = new Date(System.currentTimeMillis() + expire * 1000);
        URL url = client.generatePresignedUrl(properties.getBucketName(), serverPath, expireTime);
        client.shutdown();
        return url;
    }

    public static URL accessUrl(String serverPath, Long expire) {
        return accessUrl(new OssProperties(), serverPath, expire);
    }

}

三、测试


image.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 210,914评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 89,935评论 2 383
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,531评论 0 345
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,309评论 1 282
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,381评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,730评论 1 289
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,882评论 3 404
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,643评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,095评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,448评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,566评论 1 339
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,253评论 4 328
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,829评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,715评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,945评论 1 264
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,248评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,440评论 2 348