[转]Android 如何根据网络地址获取网络图片方法

时间:2021-03-26 16:39:52
 
  1. <h2><pre name="code" class="html" style="font-weight: bold; font-size: 24px;">


 
 

一、注意点:连接对象获取,请求方法“GET”,资源获取超时设置,建立连接,通过连接获取输入流,采用谷歌API:BitmapFactory得到图片对象Bitmap。

 
  1. public Bitmap getInternetPicture(String UrlPath) {
  2. Bitmap bm = null;
  3. // 1、确定网址
  4. // http://pic39.nipic.com/20140226/18071023_164300608000_2.jpg
  5. String urlpath = UrlPath;
  6. // 2、获取Uri
  7. try {
  8. URL uri = new URL(urlpath);
  9. // 3、获取连接对象、此时还没有建立连接
  10. HttpURLConnection connection = (HttpURLConnection) uri.openConnection();
  11. // 4、初始化连接对象
  12. // 设置请求的方法,注意大写
  13. connection.setRequestMethod("GET");
  14. // 读取超时
  15. connection.setReadTimeout(5000);
  16. // 设置连接超时
  17. connection.setConnectTimeout(5000);
  18. // 5、建立连接
  19. connection.connect();
  20. // 6、获取成功判断,获取响应码
  21. if (connection.getResponseCode() == 200) {
  22. // 7、拿到服务器返回的流,客户端请求的数据,就保存在流当中
  23. InputStream is = connection.getInputStream();
  24. // 8、从流中读取数据,构造一个图片对象GoogleAPI
  25. bm = BitmapFactory.decodeStream(is);
  26. // 9、把图片设置到UI主线程
  27. // ImageView中,获取网络资源是耗时操作需放在子线程中进行,通过创建消息发送消息给主线程刷新控件;
  28. Log.i("", "网络请求成功");
  29. } else {
  30. Log.v("tag", "网络请求失败");
  31. bm = null;
  32. }
  33. } catch (MalformedURLException e) {
  34. e.printStackTrace();
  35. } catch (IOException e) {
  36. e.printStackTrace();
  37. }
  38. return bm;
  39. }

二、 同时要注意网络操作需在子线程操作,以免引起主线程阻塞,影响用途体验,同时采用handler消息机制进行参数处理,刷新UI控件。

  1. public void onClick(View v){
  2. new Thread(new Runnable() {
  3. @Override
  4. public void run() {
  5. // TODO Auto-generated method stub
  6. String urlpath = "http://pic39.nipic.com/20140226/18071023_164300608000_2.jpg";
  7. Bitmap bm = getInternetPicture(urlpath);
  8. Message msg = new Message();
  9. // 把bm存入消息中,发送到主线程
  10. msg.obj = bm;
  11. handler.sendMessage(msg);
  12. }
  13. }).start();
  14. }</span>

三、 主线程处理消息队列中的消息,并刷新相应UI控件

 
  1. Handler handler = new Handler() {
  2. public void handleMessage(android.os.Message msg) {
  3. ImageView imgView = (ImageView) findViewById(R.id.internet_imageview);
  4. imgView.setImageBitmap((Bitmap) msg.obj);
  5. };
  6. };</span>

四、获取网络图片,采用缓存保存文件

  1. <span style="font-size:18px;">public Bitmap getInternetPicture(String UrlPath) {
  2. Bitmap bm = null;
  3. // 1、确定网址
  4. // http://pic39.nipic.com/20140226/18071023_164300608000_2.jpg
  5. String urlpath = UrlPath;
  6. // 2、获取Uri
  7. try {
  8. URL uri = new URL(urlpath);
  9. // 3、获取连接对象、此时还没有建立连接
  10. HttpURLConnection connection = (HttpURLConnection) uri.openConnection();
  11. // 4、初始化连接对象
  12. // 设置请求的方法,注意大写
  13. connection.setRequestMethod("GET");
  14. // 读取超时
  15. connection.setReadTimeout(5000);
  16. // 设置连接超时
  17. connection.setConnectTimeout(5000);
  18. // 5、建立连接
  19. connection.connect();
  20. // 6、获取成功判断,获取响应码
  21. if (connection.getResponseCode() == 200) {
  22. // 7、拿到服务器返回的流,客户端请求的数据,就保存在流当中
  23. InputStream is = connection.getInputStream();
  24. // 8、开启文件输出流,把读取到的字节写到本地缓存文件
  25. File file = new File(getCacheDir(), getFileName(urlpath));
  26. FileOutputStream fos = new FileOutputStream(file);
  27. int len = 0;
  28. byte[] b = new byte[1024];
  29. while ((len = is.read(b)) != -1) {
  30. fos.write(b, 0, len);
  31. }
  32. fos.close();
  33. is.close();
  34. //9、 通过图片绝对路径,创建Bitmap对象
  35. bm = BitmapFactory.decodeFile(file.getAbsolutePath());
  36. Log.i("", "网络请求成功");
  37. } else {
  38. Log.v("tag", "网络请求失败");
  39. bm = null;
  40. }
  41. } catch (MalformedURLException e) {
  42. e.printStackTrace();
  43. } catch (IOException e) {
  44. e.printStackTrace();
  45. }
  46. return bm;
  47. }
  48. public String getFileName(String path) {
  49. int index = path.lastIndexOf("/");
  50. return path.substring(index + 1);
  51. }
  52. }</span>
 
 
[转]Android 如何根据网络地址获取网络图片方法