标签:android style blog http color java 使用 io
git clone https://android.googlesource.com/platform/frameworks/volley
1 //初始化一个请求队列 2 RequestQueue queue = Volley.newRequestQueue(this); 3 String url ="http://www.google.com"; 4 5 //根据给定的URL新建一个请求 6 StringRequest stringRequest = new StringRequest(Request.Method.GET, url, 7 new Response.Listener() { 8 @Override 9 public void onResponse(String response) { 10 // 在这里尽情蹂躏String类型的响应。 11 } 12 }, new Response.ErrorListener() { 13 @Override 14 public void onErrorResponse(VolleyError error) { 15 // 出错了怎么办?凉拌!并且在这里拌。 16 } 17 }); 18 // 把这个请求加入请求队列 19 queue.add(stringRequest);
标签:android style blog http color java 使用 io
原文地址:http://www.cnblogs.com/liu37130/p/3902390.html