パラメーター付きの URL を使用して、インターネットから Android 用の画像をダウンロードしますか???
このコードは機能しますが、それは望ましくありません。パラメーター付きの URL を使用して画像をダウンロードしたい (例: URL= http://yahoo.com/record?ProductID=1 )
このコードの変更方法を教えてください。
bmp = this.GetNetBitmap("http://avatar.csdn.net/B/D/5/1_redoffice.jpg");
public Bitmap GetNetBitmap(String url){
URL imageUrl = null;
Bitmap bitmap = null;
try{
imageUrl = new URL(url);
}
catch(MalformedURLException e){
Log.e("DownloadTimerTask", e.getMessage());
}
try{ HttpURLConnection conn = (HttpURLConnection)imageUrl.openConnection();
conn.setDoInput(true);
conn.connect();
InputStream is = conn.getInputStream(); bitmap = BitmapFactory.decodeStream(is); is.close();
}
catch(IOException e){
Log.e("DownloadTimerTask", e.getMessage());
}
return bitmap;
}