URLからリモートのJPGファイルを取得し、それをBitmapに入れたいと考えています。私はAndroid用に開発しています、私はマニフェスト上のインターネットとインターネットの許可を持っています。USERとパスワードを使用してURLからリモートJPGを取得する方法は?
問題は、URLにユーザーとパスワードが必要だということです。
私はパスワードなしでビットマップにリモート画像を取得する方法を知っている:
public static Bitmap getBitmapFromURL(String src) {
try {
URL url = new URL(src);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoInput(true);
connection.connect();
InputStream input = connection.getInputStream();
Bitmap myBitmap = BitmapFactory.decodeStream(input);
return myBitmap;
} catch (IOException e) {e.printStackTrace();}
return null;
}
と私はユーザー名とパスワードをURLからXML文字列を取得する方法を知っている:
public String getXML(String url){
StringBuilder builder = new StringBuilder();
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response;
try {
((AbstractHttpClient) httpclient).getCredentialsProvider().setCredentials(
new org.apache.http.auth.AuthScope(null,-1),
new org.apache.http.auth.UsernamePasswordCredentials(MagazineStatus._username, MagazineStatus._password));
response = httpclient.execute(new HttpGet(url));
StatusLine statusLine = response.getStatusLine();
if(statusLine.getStatusCode() == HttpStatus.SC_OK) {
try {
HttpEntity entity = response.getEntity();
InputStream content = entity.getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(content));
String line;
while ((line = reader.readLine()) != null) builder.append(line);
}catch(Exception ex) {Log.e("DBF Error",ex.toString());}
}else {
response.getEntity().getContent().close();
throw new IOException(statusLine.getReasonPhrase());
}
}catch(ClientProtocolException cpe) {Log.e("ClientProtocolException @ at FPT",cpe.toString());} catch(Exception ex) {Log.e("Exception at FETCHPROJECTASK",ex.toString());}
return builder.toString();
}
ので、私は、XMLメソッドのように、USERとPASSWORDを使用して、URLからビットマップをダウンロードする必要があります。しかし、私は魔法のコードをマージする方法を知らない。
私はこれを達成するために誰かを助けることができますか?
おかげ
画像はどこにホストされていますか? flicker.com? –
XML文字列のサンプル出力を質問自体に入れることができますか?それは助けになるだろう... –