try{
URLConnection conn=aURL.openConnection();
conn.connect();
InputStream is=conn.getInputStream();
BufferedInputStream bis=new BufferedInputStream(is);
Bitmap bm=BitmapFactory.decodeStream(bis);
bis.close();
is.close();
this.myWeatherImageView.setImageBitmap(bm);
}catch(Exception e){}
URLConnection conn=aURL.openConnection();
conn.connect();
InputStream is=conn.getInputStream();
BufferedInputStream bis=new BufferedInputStream(is);
Bitmap bm=BitmapFactory.decodeStream(bis);
bis.close();
is.close();
this.myWeatherImageView.setImageBitmap(bm);
}catch(Exception e){}