1、在android4.0以后的版本,主线程(UI线程)不在支持网络请求,原因大概是影响主线程,速度太慢,容易卡机,所以需要开启新的线程请求数据;
2、新线程完成后一启动,发现报错,空指针 nullpointerexception,要等待线程完毕后才能得到数据,下面是两种解决方法:
1)要么判断线程是否还活着;
2)要么在线程中设置一flag,结束后,更改其状态
3、处理返回的json数据
1)向服务器请求Json数据,保存在carList
BufferedInputStream bis = new BufferedInputStream(conn.getInputStream());
//缓冲读取
byte[] data = new byte[1024];
int len = 0;
String bufferString = "";
while((len = bis.read(data)) != -1){
bufferString+=new String(data, 0, len);
}
carList = new JSONArray(bufferString.trim());
2)解析Json数据
4、图片加载通常很慢,最好异步请求
异步请求类源代码
public AsyncViewTask() {
imageCache = new HashMap>();
}
protected Drawable doInBackground(View... views) {
Drawable drawable = null;
View view = views[0];
if (view.getTag() != null) {
if (imageCache.containsKey(view.getTag())) {
SoftReference cache = imageCache.get(view.getTag().toString());
drawable = cache.get();
if (drawable != null) {
return drawable;
}
}
try {
if (URLUtil.isHttpUrl(view.getTag().toString())) {// 如果为网络地址。则连接url下载图片
URL url = new URL(view.getTag().toString());
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoInput(true);
conn.connect();
InputStream stream = conn.getInputStream();
drawable = Drawable.createFromStream(stream, "src");
stream.close();
} else {// 如果为本地数据,直接解析
drawable = Drawable.createFromPath(view.getTag().toString());
}
} catch (Exception e) {
Log.v("img", e.getMessage());
return null;
}
}
this.mView = view;
return drawable;
}
protected void onPostExecute(Drawable drawable) {
if (drawable != null) {
ImageView view = (ImageView) this.mView;
view.setImageDrawable(drawable);
this.mView = null;
}}}
新闻热点
疑难解答
图片精选