下面是Post方法:

  NameValuePair na1=new BasicNameValuePair("email","123456@email");  NameValuePair na2=new BasicNameValuePair("password","1");  List list=new ArrayList();  list.add(na1);  list.add(na2);  try {HttpEntityrequestHttpEntity = new UrlEncodedFormEntity(list);//HttpPost httpPost=new HttpPost("http://192.168.1.101/university/user/userlogin.action");HttpPost httpPost=new HttpPost("http://192.168.1.101/university/user/login.jsp");httpPost.setEntity(requestHttpEntity);  HttpClient httpClient=new DefaultHttpClient();  HttpResponse httpResponse=httpClient.execute(httpPost);    HttpEntity httpEntity=httpResponse.getEntity();  InputStream inputStream=httpEntity.getContent();  BufferedInputStream bufferStream=new BufferedInputStream(inputStream,8192);byte [] buffer =new byte[1024];int result=bufferStream.read(buffer);while(result!=-1){System.out.print(new String(buffer));result=bufferStream.read(buffer);}inputStream.close();bufferStream.close();} catch (UnsupportedEncodingException e) {// TODO Auto-generated catch blocke.printStackTrace();} catch (ClientProtocolException e) {// TODO Auto-generated catch blocke.printStackTrace();} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();}

 下面是Get方法

 

//public void onClick(View v) {// try {//        HttpGet httpGet=new HttpGet("http://125.82.89.243/university/user/userlogin.action");//    HttpClient httpClient=new DefaultHttpClient(); //HttpResponse response =httpClient.execute(httpGet);//HttpEntity httpEntity=response.getEntity();//InputStream inputStream=httpEntity.getContent();////BufferedInputStream bufferStream=new BufferedInputStream(inputStream,8192);////byte [] buffer =new byte[1024];//int result=bufferStream.read(buffer);//while(result!=-1){//System.out.print(new String(buffer));//result=bufferStream.read(buffer);//}////////} catch (ClientProtocolException e) {//// TODO Auto-generated catch block//e.printStackTrace();//} catch (IOException e) {//// TODO Auto-generated catch block//e.printStackTrace();//}////// TODO Auto-generated method stub////}                });
 

更多相关文章

  1. 图片旋转的两种方法
  2. android sdk 兼容低版本的处理方法
  3. Android后端服务器的搭建方法
  4. 保持Android手机屏幕长亮的方法
  5. Android 崩溃分析 方法论
  6. Android studio中正确引入so文件的方法
  7. Android代码混淆及项目发布方法记录

随机推荐

  1. Android实现简单计算器源码
  2. Android ViewGroup系列控件的使用
  3. android打开文件及打开方式(打开程序列表)
  4. [android]system.img文件的打包和解包
  5. TabHost自定义标签页(一)
  6. Android查看手机通讯录(ListView)
  7. Android屏幕录制
  8. Android错误总结
  9. Android绘图篇(一)——Canvans基本操作
  10. android状态栏 高度