• 大小: 6KB
    文件类型: .java
    金币: 2
    下载: 1 次
    发布日期: 2021-06-23
  • 语言: Java
  • 标签: java  aws  s3  上传图片  

资源简介

java上传图片到aws s3,最近因为项目原因,需要将程序下载到本地的图片上传到aws s3提供给国外的客户使用,文件为我使用的详细代码

资源截图

代码片段和文件信息

package com.ico;


import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

import com.amazonaws.auth.AWSStaticCredentialsProvider;
import com.amazonaws.auth.BasicAWSCredentials;
import com.amazonaws.regions.Regions;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3ClientBuilder;
import com.amazonaws.services.s3.model.Bucket;
import com.amazonaws.services.s3.model.GetobjectRequest;
import com.amazonaws.services.s3.model.objectListing;
import com.amazonaws.services.s3.model.objectmetadata;
import com.amazonaws.services.s3.model.S3object;
import com.amazonaws.services.s3.model.S3objectInputStream;
import com.amazonaws.services.s3.model.S3objectSummary;



public class Listobjects implements Runnable{

private String key;
private String path;
static int i=0;

public Listobjects(String keyString path){
this.key = key;
this.path = path;
}

public void run() {
try {
listobjects(this.key this.path);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

    public static void listobjects(String keyString path) throws FileNotFoundException
    {
     //指定bucket名称
        String bucket_name = “xxx“;
        System.out.println(i++);
        //连接s3
        BasicAWSCredentials awsCreds = new BasicAWSCredentials(Access key ID Secret access key);
        AmazonS3 s3 = AmazonS3ClientBuilder.standard()
                .withCredentials(new AWSStaticCredentialsProvider(awsCreds))
                .withRegion(Regions.US_EAST_2) 
                .build();


        //获取s3上面所有的buckets;
        List buckets = s3.listBuckets();
        System.out.println(“Your Amazon S3 buckets are:“);
        System.out.println(buckets.size());
        for (Bucket b : buckets) {
            System.out.println(“* “ + b.getName());
        }
        
        //根据key删除bucket上面的文件
        deleteobject(String bucketName String key) ---此API删除文件:buckName 文件夹名;key,所删除文件的key值   
        
        isobjectExit(String bucketName String key)://判断名为bucketName的bucket里面是否有一个名为key的object;、
        
        
        String[] types = key.split(“\\.“);
        String type = types[1];
        objectmetadata metadata = new objectmetadata();
        metadata.setContentType(“image/“+type);
        FileInputStream inputStream = new FileInputStream(path);
        /*PutobjectResult qString = s3.putobject(bucket_name key inputStream metadata);
        System.out.println(qString);*/
        //System.out.println(key + “ 上传成功“);
        System.out.println(key);
        //获取buckets上面的文件
      /* try {
         S3object souString = s3.getobject(bucket_name key);
} catch (Exception e) {
e.printStackTrace();

评论

共有 条评论