Android 加载服务器上的图片

  1.         public Bitmap getRemoteImage ( final URL aURL ) {
  2.                 try {
  3.                         final URLConnection conn = aURL. openConnection ( ) ;
  4.                         conn. connect ( ) ;
  5.                         final BufferedInputStream bis = new BufferedInputStream (conn. getInputStream ( ) ) ;
  6.                         final Bitmap bm = BitmapFactory. decodeStream (bis ) ;
  7.                         bis. close ( ) ;
  8.                         is. close ( ) ;
  9.                         return bm ;
  10.                 } catch ( IOException e ) {
  11.                         Log. d ( "DEBUGTAG", "Oh noooz an error..." ) ;
  12.                 }
  13.                 return null ;
  14.         }


你可能感兴趣的:(Android)