Android从服务器获取图片的实例方法
时间:2022-08-27 04:03:46
[java]
public static Bitmap getBitmapFromServer(String imagePath) {
HttpGet get = new HttpGet(imagePath);
HttpClient client = new DefaultHttpClient();
Bitmap pic = null;
try {
HttpResponse response = client.execute(get);
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent();
pic = BitmapFactory.decodeStream(is); // 关键是这句代码
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return pic;
}
public static Bitmap getBitmapFromServer(String imagePath) {
HttpGet get = new HttpGet(imagePath);
HttpClient client = new DefaultHttpClient();
Bitmap pic = null;
try {
HttpResponse response = client.execute(get);
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent();
pic = BitmapFactory.decodeStream(is); // 关键是这句代码
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return pic;
}
其中imagePath是你的图片路径,
最后可以将图片显示在手机上:
[java]
imageView.setImageBitmap(bitmap);
标签:服务器,获取,图片
0
投稿
猜你喜欢
在android中如何用Java加载解析so
2023-09-14 18:16:05
详解Elasticsearch如何把一个索引变为只读
2023-01-22 12:00:59
Android7.0 MTK设置默认桌面
2023-09-26 12:30:43
Java实现顺序表和链表结构
2023-11-13 09:35:43
在Mybatis中使用自定义缓存ehcache的方法
2022-02-24 17:27:35
C#通过xpath查找xml指定元素的方法
2023-06-22 11:55:29
提升java开发效率工具lombok使用争议
2022-06-22 03:08:18
Java 数据结构与算法系列精讲之字符串暴力匹配
2021-10-06 05:43:27
Spring实战之使用ClassPathResource加载xml资源示例
2023-11-28 23:00:30
c#图片缩放图片剪切功能实现(等比缩放)
2022-08-17 04:46:13
利用openoffice+jodconverter-code-3.0-bate4实现ppt转图片
2021-07-24 03:11:25
Android编程判断SD卡是否存在及使用容量查询实现方法
2022-02-08 23:15:28
C# 图片剪切与缩小的实例
2021-12-31 14:32:53
java容器详细解析
2023-08-23 16:13:38
Java获取中文拼音、中文首字母缩写和中文首字母的示例
2021-07-18 14:28:16
C#中+=是什么意思及+=的用法
2023-07-11 23:25:31
SpringMVC请求参数的使用总结
2022-11-30 22:23:18
C#强制类型转换小结
2023-11-01 06:29:53
通过源码角度看看AccessibilityService
2023-07-25 09:31:43
SpringCloud中Eureka的配置及使用讲解
2022-04-19 19:16:28