-
append填充数据查看全部
-
响应码信息查看全部
-
http请求方式查看全部
-
TCP之间。SYN,ACK查看全部
-
java.lang.NullPointerException: Attempt to invoke virtual method 'boolean android.os.Handler.post(java.lang.Runnable)' on a null object reference at com.mycompany.myapp.HttpThread.run(HttpThread.java:40) 为什么有这个错误?查看全部
-
get和post的区别,一般请求参数的大小比较小用get,请求体的大小比较大的时候用post,还有一点是get暴露接口地址,post不暴露,post比较安全查看全部
-
HttpCilent_httpGet查看全部
-
httpClient查看全部
-
JSP乱码问题: response.setContentType("text/html;charset=utf-8"); String name = new String(request.getParameter("name").getBytes ("ISO-8859-1"),"UTF-8");查看全部
-
第一次使用查看全部
-
post通过实体发送数据请求,get通过url请求查看全部
-
post方法 HttpClinet client = new DefaultHttpClient(); HttpPost post = new HttpPost(url); //通过NameValuePair去存储数据 ArrayList<NameValuePair> list = new ArrayList<NameValuePair>(); list.add(new BasicNameValuePair("name",name)); list.add(new BasicNameValuePair("age",age)); try{ //设置要发送的数据 post.setEntity(new UrlEncodedFormEntity(list)); HttpResponse respose = client.execute(post); if(response.getStatusLine().getStatusCode()==HttpStatus.SC_OK){ String content = entityUtils.toString(respone.getEntity()); } }catch(UnsupportedEncodingException e){}; get方法: //创建httpget对象<br> HttpGet httpGet = new HttpGet(url);<br> //创建Httpclient对象<br> HttpClinet client = new DefaultHttpClient();<br> HttpResponse respone;<br> try{<br> //发送请求<br> respone = client.execute(httpGet);<br> //判断类型<br> if(response.getStatusLine().getStatusCode()==HttpStatus.SC_OK){<br> //取出服务器返回的数据<br> String content = entityUtils.toString(respone.getEntity());<br>查看全部
-
json:轻量级数据交换格式。查看全部
-
android客户端对服务器通过get方式发送数据有中文时要对数据进行转码,而post方法则不用转码。查看全部
-
doGet()使用在数据量比较小的情况下(几kb),数据量大的时候使用doPost()方法。查看全部
举报
0/150
提交
取消