单项选择题
8 Volley发送网络请求的代码如下图所示;private void sendVolleyRequest() { String strUrl = “http://139.199.220.137:8080/api/v2/get_weather”; //定义访问网络的Url地址; HashMap mHashMapPara=new HashMap(); mHashMapPara.put(“UserName”,“user1”); om.android.volley.Request mRequest=new JsonObjectRequest( com.android.volley.Request.Method.POST, strUrl, new Gson().toJson(mHashMapPara), mVolleyResponseListener,null); }
; 请问Volley网络请求的类型是什么()?
A.HTTP
B.GET
C.POST
D.FTP