httpプロトコルを使ってネットワーク画像を取得します。


httpはWW方式のデータを転送するために使用されます。httpプロトコルは要求応答のモデルを採用した。androidではHttpURLConnectionとHttp ClientインターフェイスのHTTPプログラムの開発を提供しています。これらの2つの方法でネットワーク画像を取得します。
          1.HttpURLConnection
          コードは以下の通りです
   
public class HttpURLConnectionActivity extends Activity {

	private ImageView imageView;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		// TODO Auto-generated method stub
		super.onCreate(savedInstanceState);
		setContentView(R.layout.simple1);
		
		imageView=(ImageView) this.findViewById(R.id.imageView1);
		//        
		try {
			URL url = new URL("http://news.xinhuanet.com/photo/2012-02/09/122675973_51n.jpg");
			HttpURLConnection conn= (HttpURLConnection) url.openConnection();
			conn.setRequestMethod("GET");
			conn.setConnectTimeout(5*1000);
			conn.connect();
			InputStream in=conn.getInputStream();
			ByteArrayOutputStream bos=new ByteArrayOutputStream();
			byte[] buffer=new byte[1024];
			int len = 0;
			while((len=in.read(buffer))!=-1){
				bos.write(buffer,0,len);
			}
			byte[] dataImage=bos.toByteArray();
			bos.close();
			in.close();
			Bitmap bitmap=BitmapFactory.decodeByteArray(dataImage, 0, dataImage.length);
			//Drawable drawable=BitmapDrawable.
	        imageView.setImageBitmap(bitmap);
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
			Toast.makeText(getApplicationContext(), "      ", 1).show();
		}
		
	}
}
           最後にmaifest.xmlにインターネットアクセス権限を忘れないでください。
<uses-permission android:name="android.permission.INTERNET" />
         インターネットの画像にアクセスするのは時間がかかりますので、正式プロジェクトでは非同期で画像をロードするほうが効果的です。
         実行効果:
        使用http协议获取网络图片_第1张图片
         2.Http Client
          以下はHttpClientを使ってウェブページの内容を取得します。
        
public class HttpClientActivity extends Activity {

	private ImageView imageview;
	private TextView text;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		// TODO Auto-generated method stub
		super.onCreate(savedInstanceState);
		setContentView(R.layout.simple2);
		
		imageview=(ImageView) this.findViewById(R.id.imageView2);
		text=(TextView) this.findViewById(R.id.textView2);
		HttpGet httpGet=new HttpGet("http://cloud.csdn.net/a/20120209/311628.html");
		HttpClient httpClient=new DefaultHttpClient();
		try {
			//  HttpResponse  
			HttpResponse httpResponse=httpClient.execute(httpGet);
			//HttpResponse          
			if(httpResponse.getStatusLine().getStatusCode()==HttpStatus.SC_OK){
				//          
				String dataImageStr=EntityUtils.toString(httpResponse.getEntity());
				text.setText(dataImageStr);
			}
		} catch (ClientProtocolException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
}
       実行効果:
       使用http协议获取网络图片_第2张图片
        このようにして、ウェブページの内容をロードすることに成功しました。