[置顶] 获取网络数据中的数组显示成ListView的简单流程
首先说一下 这是我自己的个人笔记,如果想看看,不用看细节,可以看流程。
定义一个线程池 ExecutorService pool = Executors.newFixedThreadPool(15);
运用线程获取网络数据 即编辑相关的访问方法以及参数
public static String sendDataByHttpClientPost(String url,
List<NameValuePair> parameters) throws Exception { HttpClient client = new DefaultHttpClient(); client.getParams().setParameter(
CoreConnectionPNames.CONNECTION_TIMEOUT, TIME_OUT);
client.getParams().setParameter(CoreConnectionPNames.SO_TIMEOUT, TIME_OUT);
HttpPost httppost = new HttpPost(url); UrlEncodedFormEntity entity = new UrlEncodedFormEntity(parameters,
"utf-8"); httppost.setEntity(entity);
HttpResponse ressponse = client.execute(httppost);
int code = ressponse.getStatusLine().getStatusCode(); if (code == Status.SUCCESS) {
InputStream is = ressponse.getEntity().getContent();
byte[] result = getBytes(is); return new String(result);
} else {
throw new IllegalStateException("服务器状态异常");
}
}
获得相关JSON数据进行解析,当然首先得创建一个实体类 即下面方法的参数 clazz,参数jsonStr就是获得的网络JSON数据,clazz这个就是一个数组对象了,所包含的字段,可以在实体类中定义相关的变量。
STATUS STATUS_SUCCESS INFO 这些是我自己写的相关常量
public static <T> List<T> parseList(String jsonStr, Class<T> clazz)
throws JSONException {
JSONObject json = new JSONObject(jsonStr);
String response = json.getString(STATUS);
List<T> list = new ArrayList<T>();
if (response != null && response.equals(STATUS_SUCCESS)) {
String info = json.getString(INFO);
if (!TextUtils.isEmpty(info) && !info.equals("null")) {
list = (List<T>) JSON.parseArray(info, clazz);
return list;
} else {
return list;
}
} else {
throw new IllegalStateException();
}
}
上面方法得到的就是一个我们要在ListView当中显示的数组数据。然后将它通过消息Message发送到主线程的Handler中进行处理 即
message = handler.obtainMessage(Status.SUCCESS, list);
message.sendToTarget();
SUCCESS 为自己写的常量
这样就拿到了数组了,现在的问题是,怎样实时显示到ListView当中, 步骤可以这样:
一 先定义一个类 它进行了适配器当中数据的更改、刷新 即
package com.sinosoft.foodsafemanagerv2.function.task.unionmeeting; import java.util.ArrayList;
import java.util.HashMap;
import java.util.List; import android.content.Context;
import android.widget.ListView; import com.sinosoft.adpter.MySimpleAdpter;
import com.sinosoft.foodsafemanagerv2.R;
import com.sinosoft.foodsafemanagerv2.entity.Case; public class UnionRecordListView { private ListView listView;
private MySimpleAdpter myAdapter;
private ArrayList<HashMap<String, Object>> datas;
private Context context;
private String[] from; public UnionRecordListView() {
super();
} public UnionRecordListView(final Context context, ListView listView) {
this.context = context;
this.listView = listView;
from = new String[] { "img", "type_name", "time_type" };
datas = new ArrayList<HashMap<String, Object>>();
myAdapter = new MySimpleAdpter(context, datas,
R.layout.layout_recordlistview_item, from, new int[] {
R.id.imageview, R.id.name_or_type_text,
R.id.type_or_time_text });
listView.setAdapter(myAdapter);
} /**
* 设置数据
*
* @param list
*/
public void setDatas(List<Case> list) {
ArrayList<HashMap<String, Object>> data = new ArrayList<HashMap<String, Object>>();
for (Case c : list) {
HashMap<String, Object> map = new HashMap<String, Object>();
String imgs = c.getImgIds(); map.put(from[0], c.getCaseId());
map.put(from[1], c.getUnitName());
map.put(from[2], c.getTypeName()); data.add(map);
}
this.datas = data;
myAdapter.setListData(data);
myAdapter.notifyDataSetChanged();
}
}
二 这样我们就可以调用 setDatas()方法,所带的数组参数的不同,进行ListView的更新,显示不同的数据。
[置顶] 获取网络数据中的数组显示成ListView的简单流程的更多相关文章
- Android中获取网络数据时的分页加载
//此实在Fragment中实现的,黄色部分为自动加载,红色部分是需要注意的和手动加载, 蓝色部分是睡眠时间,自我感觉不用写 ,还有就是手动加载时,不知道为什么进去后显示的就是最后一行,求大神 ...
- android—获取网络数据
取网络数据主要靠发交易(或者说请求,接口等),而这些交易由java中的网络通信,HttpURLConnection和HttpClient实现,以下是具体例子. 大家都知道,网络通信,发送请求有两种 ...
- Swift实战-豆瓣电台(三)获取网络数据
观看地址:http://v.youku.com/v_show/id_XNzMwMzQxMzky.html 这节内容,我们先说了怎么将storyboard中的组件在类中进行绑定.然后写了一个类用来获取网 ...
- Http方式获取网络数据
通过以下代码可以根据网址获取网页的html数据,安卓中获取网络数据的时候会用到,而且会用Java中的sax方式解析获取到数据.(sax解析主要是解析xml)具体代码如下: package com.wy ...
- Swift - 异步获取网络数据封装类
使用NSURLConnection.sendAsynchronousRequest()可以采用异步获取的方式取得数据.下面通过对数据获取类进行封装,演示如何进行数据请求与接收. 1,HttpContr ...
- 使用NSURLSession获取网络数据和下载文件
使用NSURLSession获取网络数据 使用NSURLSession下载文件
- 使用promise方式来获取网络数据
获取网络数据 let data = []; new Promise(function(resolve,reject){ axios.post('api.php').then(function(resp ...
- ListView获取网络数据并展示优化练习
权限: <uses-permission android:name="android.permission.INTERNET"></uses-permission ...
- aspxgridview export导出数据,把true显示成‘是’
项目原因,数据库中的数据是‘true’还有‘false’,但是在页面上要显示为‘是否’,导出来的时候也是要显示成‘是否’ 要在web页面当中显示成‘是否’,只要在gridview的CustomColu ...
随机推荐
- 改变dos的编码方式
chcp 936 改变成 gbk chcp 65001 改成 utf-8 删除MySqlite文件 generic_x86:/data/data/com.example.lifen.sqlite/da ...
- iOS.Animation.CAMediaTiming
CAMediaTiming Protocol CALayre 和 CAAnimation 实现了CAMediaTiming 接口. CAMediaTiming 定义了8个属性. speed属性: Co ...
- Linux快速安装apache+mysql+php环境
yum -y install httpd mysql mysql-server php php-mysql postgresql postgresql-server php-postgresql ph ...
- UML 类图几种关系的总结(图文并茂、案例详解)
听语音 | 浏览:2831 | 更新:2017-03-01 13:06 1 2 3 4 5 6 7 分步阅读 在UML类图中,常见的有以下几种关系: 泛化(Generalization), 实现(R ...
- TP QQ 微信 微博登录
use Org\Util\QQconnect; use Org\Util\Wechatauth; use Org\Util\SaeTOAuthV2; use Org\Util\SaeTClientV2 ...
- c++11 初始化列表 bind function 示例
// 111111111111.cpp: 定义控制台应用程序的入口点. // #include "stdafx.h" #include <iostream> #incl ...
- 各种编译不通过xcode
2017-08-24 Apple Mach-O Linker (Id) Error Linker command failed with exit code 1 (use -v to see invo ...
- Tomcat新问题 还没有解决:the apr based apache tomcat native librariy which allows optional perf...........
问题信息详细: 2012-5-18 18:41:54 org.apache.catalina.core.AprLifecycleListener init 信息: The APR based Apa ...
- 哈希与字典树与KMP
hash讲解 主要记录hash的公式: ; i<=len; i++) { Hash[i]=(Hash[i-]*)%mod)%mod; } 求hash的公式是这个,怎么求一小段的hash值呢? ; ...
- CollisionFlags
CollisionFlags是CharactorController的返回值,表示碰撞的信息 Values: None Sides Above Below function Update () { v ...