/**
* 通过url取得文件返回InputStream类型数据
* @author gugf
*
*/
public class HttpUtils {
/**
* 通过图片url返回图片Bitmap
* @param url
* @return
*/
public static InputStream returnBitMap(String path) {
URL url = null;
InputStream is =null;
try {
url = new URL(path);
} catch (MalformedURLException e) {
e.printStackTrace();
}
try {
HttpURLConnection conn = (HttpURLConnection) url.openConnection();//利用HttpURLConnection对象,我们可以从网络中获取网页数据.
conn.setDoInput(true);
conn.connect();
is = conn.getInputStream(); //得到网络返回的输入流
} catch (IOException e) {
e.printStackTrace();
}
return is;
}
}
在android的4.0中会报异常,在主线程中加入以下代码可解决
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
.detectDiskReads().detectDiskWrites().detectNetwork()
.penaltyLog().build());
StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
.detectLeakedSqlLiteObjects().penaltyLog().penaltyDeath()
.build());

本文介绍了一种通过HTTP URL加载图片并返回InputStream的方法,适用于Android应用程序。文中详细展示了如何使用HttpURLConnection实现网络请求,并提供了针对Android 4.0中可能遇到的异常解决方案。
764

被折叠的 条评论
为什么被折叠?



