android笔记1――网络图片查看器

两个重要的环节:

1访问网络的一些操作


   URL url=new URL(path);

   HttpURLConnection comm=(HttpURLConnection) url.openConnection();

   comm.setRequestMethod("GET");

   comm.setConnectTimeout(5000);

   int code=comm.getResponseCode();

2怎样把一个流中的数据转化成bitmap对象

 

   InputStream iS=comm.getInputStream();

   Bitmap bitmap=BitmapFactory.decodeStream(iS);

   194101315.png

你可能感兴趣的:(android,网络,图片)