Bitmap bmImg, realbmImg; // 비트맵을처리할 변수를 생성합니다.  
     // 이미지를 다운로드하는 함수입니다. 파라미터는 String형  
    // fileUrl 이 들어갑니다.   
    void downloadFile(String fileUrl)   
    {  
        
          
       try {
           URL url = new URL(http://cafefiles.naver.net/20100513_49/dextkr_12737249029139Jbvh_jpg/photo_100510-007_dextkr.jpg); 

           URLConnection conn = url.openConnection();  
           conn.connect();
           BufferedInputStream bis = new BufferedInputStream(conn.getInputStream());
          
           //BitmapFactory.Options options = new BitmapFactory.Options();
           //options.inSampleSize = 100;

           Bitmap bm = BitmapFactory.decodeStream(bis);
           realbmImg = Bitmap.createScaledBitmap(bm, 50, 75, false);
           bis.close();
           imView.setImageBitmap(realbmImg);
       } catch (IOException e) {
           e.printStackTrace(); 
       }



이렇게 했는데 어쩔땐 되고 어쩔땐 오류나고...미치겠네요...
Default buffer size used in BufferedInputStream constructor. It would be better to be explicit if an 8k buffer is required.
로그 캣입니다.

앞에 final을 붙여도 똑같고...뭐가 잘못된걸까요~
HttpURLConnection conn = (HttpURLConnection)myFileUrl .openConnection();   로도 해봤는데 이건 거의 못읽고 있고
그나마 URLConnect이 더 안정적인거 같은데.....
웹에서 확실하게 이미지를 수신할수 있는 방법을 알려주시면 감사하겠습니다.