前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >AWS S3 学习小结

AWS S3 学习小结

作者头像
全栈程序员站长
发布2022-11-03 10:28:19
1.5K0
发布2022-11-03 10:28:19
举报
文章被收录于专栏:全栈程序员必看

1.首先,这个是AWS的开发资源使用文档:AWS开发文档AWS官网 – S3教程

2.我们可以通过AWS Cli和Java Api来操作AWS 的 S3,AWS Cli安装教程:AWS Cli安装

3.Linux下连接S3前,需要先获取到AWS的IAM的accessKey 和secretKey,那么获取方式是:

代码语言:javascript
复制
服务->安全、身份与合规 分组下的 IAM->用户->安全证书->创建访问密钥
AWS S3 学习小结
AWS S3 学习小结

然后,

AWS S3 学习小结
AWS S3 学习小结

4.获取到了key之后,以下通过AmazonS3来操作S3:

1) 上传文件到S3

代码语言:javascript
复制
public static String uploadToS3(AmazonS3 s3, File tempFile, String remoteFileName, String bucketName) throws IOException {
        try {
            //上传文件
            s3.putObject(new PutObjectRequest(bucketName, remoteFileName, tempFile).withCannedAcl(CannedAccessControlList.PublicRead));
            //获取一个request
            GeneratePresignedUrlRequest urlRequest = new GeneratePresignedUrlRequest(
                    bucketName, remoteFileName);
            //生成公用的url
            URL url = s3.generatePresignedUrl(urlRequest);
            System.out.println("=========URL=================\n" + url + "\n============URL=============");
            return url.toString();
        } catch (AmazonServiceException ase) {
            ase.printStackTrace();
        } catch (AmazonClientException ace) {
            ace.printStackTrace();
        }
        return null;
    }

2)下载文件到本地(两种方法自己权衡吧)

代码语言:javascript
复制
import com.amazonaws.AmazonServiceException;
import com.amazonaws.auth.DefaultAWSCredentialsProviderChain;
import com.amazonaws.auth.profile.ProfileCredentialsProvider;
import com.amazonaws.regions.Regions;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3ClientBuilder;
import com.amazonaws.services.s3.model.GetObjectRequest;
import com.amazonaws.services.s3.model.S3Object;
import com.amazonaws.services.s3.model.S3ObjectInputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import com.amazonaws.ClientConfiguration;
/**
* @description:
* @create: 2019/4/26 16:24
**/
public class DownloadFile {
/**
* @Title: downFromS3
* @Description: 将文件下载到本地路径
* @param @param remoteFileName 文件名
* @param @param path 下载的路径
* @param @throws IOException    设定文件
* @return void    返回类型
* @throws
*/
public static void downFromS3(AmazonS3 s3, String remoteFileName, String path, String bucketName) throws IOException {
try {
GetObjectRequest request  = new GetObjectRequest(bucketName,remoteFileName);
s3.getObject(request,new File(path));
} catch (Exception e) {
e.printStackTrace();
}
}
public static String millToDate(long mills) {
SimpleDateFormat sdf =new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
return sdf.format(new Date(Long.valueOf(mills+"")));
}
public static void main(String[] args)
{
ClientConfiguration clientConfig = new ClientConfiguration();
clientConfig.setConnectionTimeout(60*60*1000);
clientConfig.setSocketTimeout(60*60*1000);
// (AWS_ACCESS_KEY_ID (or AWS_ACCESS_KEY) and AWS_SECRET_KEY (or AWS_SECRET_ACCESS_KEY)
System.setProperty("aws.accessKeyId","asd");
System.setProperty("aws.secretKey","tTc");
String bucket_name = "buk";
String key_name = "testDir/files.zip";
System.out.format("Downloading %s from S3 bucket %s... on %s\n", key_name, bucket_name, millToDate(System.currentTimeMillis()));
final AmazonS3 s3 = AmazonS3ClientBuilder.standard().withCredentials(DefaultAWSCredentialsProviderChain.getInstance())
//.withClientConfiguration(clientConfig).withPathStyleAccessEnabled(true)
.withRegion(Regions.US_EAST_2).build();
try {
S3Object o = s3.getObject(bucket_name, key_name);
S3ObjectInputStream s3is = o.getObjectContent();
FileOutputStream fos = new FileOutputStream(new File("C:\\Users\\Desktop\\rawfiles.Zip"));
byte[] read_buf = new byte[1024];
int read_len = 0;
while ((read_len = s3is.read(read_buf)) > 0) {
fos.write(read_buf, 0, read_len);
}
s3is.close();
fos.close();
} catch (AmazonServiceException e) {
System.err.println(e.getErrorMessage());
System.exit(1);
} catch (FileNotFoundException e) {
System.err.println(e.getMessage());
System.exit(1);
} catch (IOException e) {
System.err.println(e.getMessage());
System.exit(1);
}
System.out.println("Done!"+ millToDate(System.currentTimeMillis()));
}
}

3) 测试

代码语言:javascript
复制
import com.amazonaws.AmazonServiceException;
import com.amazonaws.auth.DefaultAWSCredentialsProviderChain;
import com.amazonaws.regions.Regions;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3ClientBuilder;
import com.amazonaws.services.s3.model.S3Object;
import com.amazonaws.services.s3.model.S3ObjectInputStream;
import com.amazonaws.auth.BasicAWSCredentials;
import com.amazonaws.regions.Region;
import com.amazonaws.services.s3.model.Bucket;
import com.amazonaws.services.s3.transfer.TransferManager;
import utils.DownloadFile;
import utils.UploadFile;
import java.io.File;
import java.io.IOException;
import java.util.List;
public class testConnection {
static AmazonS3         s3;
static TransferManager tx;
private static String AWS_ACCESS_KEY = "abc";
private static String AWS_SECRET_KEY = "efg";
static final String bucketName = "hij";
static {
ClientConfiguration config = new ClientConfiguration();
config.setConnectionTimeout(10000);
config.setSocketTimeout(300000);
s3 = new AmazonS3Client(new BasicAWSCredentials(AWS_ACCESS_KEY, AWS_SECRET_KEY), config);
Region usWest2 = Region.getRegion(Regions.US_EAST_1);
s3.setRegion(usWest2);
}
public static void main(String[] args) {
//枚举bucket
List<Bucket> buckets = s3.listBuckets();
for (Bucket bucket : buckets) {
System.out.println("Bucket: " + bucket.getName() + bucket.getOwner());
}
// 上传
try {
UploadFile.uploadToS3(s3, new File("D:\\workplace\\xml_\\i2.xml"), "testFile", bucketName);
} catch (IOException e) {
e.printStackTrace();
}
// 下载
try {
DownloadFile.downFromS3(s3, "test", "C:\\Users\\Desktop\\in.xml", bucketName);
} catch (IOException e) {
e.printStackTrace();
}
}
// 按行读取S3的GZip
public void test13() {
System.setProperty("aws.accessKeyId", "abc");
System.setProperty("aws.secretKey", "asd");
String bucket_name = "test";
String key_name = "data_date=20190814/inst.txt.gz";
System.out.format("Downloading %s from S3 bucket %s...\n", key_name, bucket_name);
final AmazonS3 s3 = AmazonS3ClientBuilder.standard().withCredentials(DefaultAWSCredentialsProviderChain.getInstance()).withRegion(Regions.US_EAST_2).build();
try {
S3Object o = s3.getObject(bucket_name, key_name);
S3ObjectInputStream s3is = o.getObjectContent();
InputStream in = new GZIPInputStream(s3is);
BufferedReader in2=new BufferedReader(new InputStreamReader(in));
String y="";
while((y=in2.readLine())!=null){//一行一行读
System.out.println(y);
}
s3is.close();
} catch (AmazonServiceException e) {
System.err.println(e.getErrorMessage());
System.exit(1);
} catch (FileNotFoundException e) {
System.err.println(e.getMessage());
System.exit(1);
} catch (IOException e) {
System.err.println(e.getMessage());
System.exit(1);
}
}
}

5. 以下通过S3Client来操作S3:

1) 小文件流上传到S3

代码语言:javascript
复制
    public void putObject(String bucket, String key, String filePath) throws IOException {
s3.putObject(PutObjectRequest.builder().bucket(bucket).key(key).build(),
RequestBody.fromByteBuffer(ByteBuffer.wrap(inputStream2ByteArray(filePath))));
}
public void putObject(String bucket, String key, byte[] bytes) {
s3.putObject(PutObjectRequest.builder().bucket(bucket).key(key).build(),
RequestBody.fromByteBuffer(ByteBuffer.wrap(bytes)));
}
public static byte[] inputStream2ByteArray(String filePath) throws IOException {
try (InputStream in = new FileInputStream(filePath)) {
byte[] data = toByteArray(in);
return data;
}
}

2) 分部上传文件流到S3

代码语言:javascript
复制
    /**
* Get upload id from s3
*/
public static String getUploadId(String bucketName, String key, Region region){
s3 = S3Client.builder().region(region).build();
// First create a multipart upload and get upload id
CreateMultipartUploadRequest createMultipartUploadRequest = CreateMultipartUploadRequest.builder()
.bucket(bucketName).key(key)
.build();
CreateMultipartUploadResponse response = s3.createMultipartUpload(createMultipartUploadRequest);
String uploadId = response.uploadId();
return uploadId;
}
/**
* Multipart upload
*/
public static void multipartUpload(String bucketName, String key,
List<String> etags, List<CompletedPart> completedParts,
String uploadId, byte[] cbuf, int off) {
Region region = Region.US_EAST_2;
s3 = S3Client.builder().region(region).build();
//record upload end tag
ByteBuffer bf = ByteBuffer.wrap(cbuf);
UploadPartRequest uploadPartRequest = UploadPartRequest.builder().bucket(bucketName).key(key)
.uploadId(uploadId)
.partNumber(off).build();
String etag = s3.uploadPart(uploadPartRequest, RequestBody.fromByteBuffer(bf)).eTag();
CompletedPart part = CompletedPart.builder().partNumber(off).eTag(etag).build();
etags.add(etag);
completedParts.add(part);
}
/**
* Complete multipart upload
*/
public static void completeMultipartUpload(String bucketName, String key, List<CompletedPart> completedParts, String uploadId) {
// Finally call completeMultipartUpload operation to tell S3 to merge all uploaded
// parts and finish the multipart operation.
CompletedMultipartUpload completedMultipartUpload = CompletedMultipartUpload.builder().parts(completedParts).build();
CompleteMultipartUploadRequest completeMultipartUploadRequest =
CompleteMultipartUploadRequest.builder().bucket(bucketName).key(key).uploadId(uploadId)
.multipartUpload(completedMultipartUpload).build();
s3.completeMultipartUpload(completeMultipartUploadRequest);
}

其中的先后顺序是:getUploadId -> multipartUpload … -> completeMultipartUpload

1. 遇到:AWS error downloading object from S3, “profile file cannot be null”,参考:https://stackoverflow.com/questions/41796355/aws-error-downloading-object-from-s3-profile-file-cannot-be-null

2. 遇到:SocketTimeoutException: Read timed out,参考:http://www.unixresources.net/faq/28195217.shtml

3. 遇到:S3的Status Code: 404 指的是 bucket 名字写错了

4. 遇到:S3的Status Code: 301,那么检查一下Region对不对。

AWS S3 学习小结
AWS S3 学习小结

5. 遇到:Unable to unmarshall response (null). Response Code: 200, Response Text: OK… ,问题在于调用s3.getObject()的时候,本地已存在相同名字的文件了。

6. 遇到:Your socket connection to the server was not read from or written to within the timeout period… ,解决这个问题可能需要设置S3 configuration的retry policy,参考:Recurrent “Idle connection..” exception in S3Client.putObject

AWS S3 学习小结
AWS S3 学习小结

官网的解释是:How can I troubleshoot the error

参考

1.AWS S3使用demo

2.S3 java SDK连接

3.命令行管理aws s3

1. https://blog.csdn.net/harryhare/article/details/80710279

2. API 示例查看文档

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/180099.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022年10月19日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档