일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Test
- sort
- Kafka
- plugin
- 900gle
- zip 암호화
- licence delete curl
- API
- matplotlib
- Java
- zip 파일 암호화
- springboot
- token filter test
- aggregation
- 차트
- license delete
- Mac
- Python
- flask
- 파이썬
- TensorFlow
- query
- License
- aggs
- high level client
- docker
- ELASTIC
- Elasticsearch
- MySQL
- analyzer test
Archives
- Today
- Total
개발잡부
AWS S3 파일업로드 테스트 본문
반응형
aws sdk 를 사용 파일 업로드 테스트
java 1.8
implementation 'com.amazonaws:aws-java-sdk-s3'
package com.etoos.edlfilebatch.service;
import com.amazonaws.auth.AWSStaticCredentialsProvider;
import com.amazonaws.auth.BasicAWSCredentials;
import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.AmazonS3ClientBuilder;
import com.amazonaws.services.s3.model.PutObjectRequest;
import java.io.File;
public class S3Test {
public static void main(String[] args) {
String bucket = "dev-bucket";
String key = "stage/info.log";
File uploadFile = new File("파일경로");
AmazonS3 s3Client = AmazonS3ClientBuilder.standard()
.withRegion("ap-northeast-2")
.withCredentials(new AWSStaticCredentialsProvider(
new BasicAWSCredentials("A","S")
))
.build();
s3Client.putObject(new PutObjectRequest(bucket, key, uploadFile));
}
}
반응형
'JAVA > java' 카테고리의 다른 글
[selenium] 동적생성 웹페이지 크롤링 (0) | 2022.01.07 |
---|---|
[selenium] Selenium 설치 (0) | 2022.01.07 |
String to JsonObject (0) | 2021.10.07 |
자바8의 java.time 패키지(LocalDate, LocalTime, LocalDateTime 등) (0) | 2020.04.28 |
JPA (0) | 2020.04.23 |
Comments