Strong Root

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