일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Logrus
- GoF 디자인패턴
- 윈도우키보드
- 컴포지트패턴
- go
- body size
- Kubernetes
- goland
- 배포 파이프라인
- Infra
- http 413
- 오블완
- AWS
- apollo router
- Intellij
- m4 pro
- GoF
- golang
- Buffered channel
- System Design
- notification system
- intellij ide
- gitops
- 티스토리챌린지
- elasticsearch
- 디자인패턴
- UnBuffered channel
- 배포 프로세스
- 대규모 시스템 설계
- 사설 ip
Archives
- Today
- Total
Fall in IT.
ByteArray를 이미지 파일로 저장하는 방법 본문
반응형
이미지 파일을 ByteArray로 변환 하는 방법과 ByteArray를 이미지파일로 저장하는 방법에 대해서 알아보겠습니다.
서버와 클라이언트 혹은 서버와 서버간의 통신에서 이미지 파일을 전송 및 수신을 해야 할때가 있습니다.
이때, ByteArrayStream을 사용하여 이미지 파일을 전송하고 수신해서 다시 이미지 파일로 저장 할 수 있습니다.
(스트림 : 데이터를 운반하는데 사용되는 연결 통로)
예제 코드를 통해 알아보도록 하겠습니다.
메소드 단위 sample code
- input : 이미지파일 경로, output : byteArray(byte[])
(이미지 파일을 바이트 배열로 저장)
public byte[] imageFileConvertToByteArray(String imageFilePath) throws Exception
{
File file = new File(imageFilePath);
BufferedImage bufferedImage = ImageIO.read(file);
ImageIO.write(bufferedImage, "png", bufferedImage);
bufferedImage.flush();
byte[] imageByte = bufferedImage.toByteArray();
bufferedImage.close();
return imageByte;
}
- input : byteArray(byte[]), output : 이미지파일 저장
(바이트 배열을 이미지 파일로 저장)
public void byteArrayConvertToImageFile(byte[] imageByte) throws Excetion
{
ByteArrayInputStream inputStream = new ByteArrayInputStream(imageByte);
BufferedImage bufferedImage = new ImageIO.read(inputStream);
ImageIO.write(bufferedImage, "png", new File("/var/opt/image.png")); //저장하고자 하는 파일 경로를 입력합니다.
}
jdk 7 부터는 File을 ByteArray로 손쉽게 변환 할 수 있습니다.
- byte[] fileByteArray = Files.readAllBytes("파일의 절대경로");
반응형
'프로그래밍언어 > Java' 카테고리의 다른 글
static 잘 활용하기 (0) | 2016.03.08 |
---|---|
StringBuffer와 StringBuilder의 차이점 (0) | 2016.03.03 |
타입에 안전한 열거형 enum (0) | 2016.03.03 |
for문(반복문) 사용시 조심해야할 점 (0) | 2016.03.02 |
인터페이스란? (0) | 2016.01.31 |
Comments