File to Byte Array (File을 Byte배열로 변환)
뿌리튼튼 CS/Android2015. 6. 12. 17:44
byte[] org.apache.commons.io.FileUtils.readFileToByteArray(File file) |
cs |
apache의 common-io 를 이용하여 간단하게 변환할 수 있습니다.
아래는 예제 코드입니다.
1
2
3
4
5
6
7 |
final String mPath = "/some/directory/picture.png";
byte[] imageBytes = FileUtils.readFileToByteArray(new File(mPath));
Bitmap bitmapImage = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length);
imageView.setImageBitmap(bitmapImage); |
cs |
참고 : http://stackoverflow.com/questions/6058003/elegant-way-to-read-file-into-byte-array-in-java
'뿌리튼튼 CS > Android' 카테고리의 다른 글
dp 단위로 set하고 싶을 때 (How to convert dps to pixels) (0) | 2015.06.18 |
---|---|
D/skia: --- decoder->decode returned false (0) | 2015.06.16 |
Android Studio에서 Library 추가시 쓸데없는 Duplicate 오류 대처법 (0) | 2015.06.12 |
[강좌] 초급2 - 버튼 클릭 + 리스너 (0) | 2015.02.15 |
[강좌] Android SDK Search - 설치 및 SDK 소스 보기 (0) | 2015.01.17 |