方式一:HttpPost(import org.apache.http.client.methods.HttpPost)

java代码:


  1. private Button button1, button2, button3;
  2. private TextView textView1;


  3. button1.setOnClickListener(new Button.OnClickListener() {


  4. @Override

  5. public void onClick(View arg0) {
  6. // TODO Auto-generated method stub
  7. // URLַ
  8. // String uriAPI =
  9. // "http://www.dubblogs.cc:8751/Android/Test/API/Post/index.php";
  10. String uriAPI = ;


  11. /* 建立HTTP Post连线 */
  12. HttpPost httpRequest = new HttpPost(uriAPI);
  13. // Post运作传送变数必须用NameValuePair[]阵列储存
  14. // 传参数 服务端获取的方法为request.getParameter("name")
  15. List<NameValuePair> params = new ArrayList<NameValuePair>();
  16. params.add(new BasicNameValuePair("name", "this is post"));
  17. try {


  18. // 发出HTTP request
  19. httpRequest.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));
  20. // 取得HTTP response
  21. HttpResponse httpResponse = new DefaultHttpClient().execute(httpRequest);


  22. // 若状态码为200 ok
  23. if (httpResponse.getStatusLine().getStatusCode() == 200) {
  24. // 取出回应字串
  25. String strResult = EntityUtils.toString(httpResponse.getEntity());
  26. textView1.setText(strResult);
  27. } else {
  28. textView1.setText("Error Response" + httpResponse.getStatusLine().toString());
  29. }
  30. } catch (ClientProtocolException e) {
  31. textView1.setText(e.getMessage().toString());
  32. e.printStackTrace();
  33. } catch (UnsupportedEncodingException e) {
  34. textView1.setText(e.getMessage().toString());
  35. e.printStackTrace();
  36. } catch (IOException e) {
  37. textView1.setText(e.getMessage().toString());
  38. e.printStackTrace();
  39. }
  40. }

  41. });
复制代码


方式二:HttpURLConnection、URL(import java.net.HttpURLConnection;import java.net.URL;import java.net.URLEncoder;)

java代码:


  1. private void httpUrlConnection() {
  2. try {
  3. String pathUrl = "http://172.20.0.206:8082/TestServelt/login.do";
  4. // 建立连接
  5. URL url = new URL(pathUrl);
  6. HttpURLConnection httpConn = (HttpURLConnection) url.openConnection();


  7. // //设置连接属性
  8. httpConn.setDoOutput(true);// 使用 URL 连接进行输出
  9. httpConn.setDoInput(true);// 使用 URL 连接进行输入
  10. httpConn.setUseCaches(false);// 忽略缓存
  11. httpConn.setRequestMethod("POST");// 设置URL请求方法
  12. String requestString = "客服端要以以流方式发送到服务端的数据...";


  13. // 设置请求属性
  14. // 获得数据字节数据,请求数据流的编码,必须和下面服务器端处理请求流的编码一致
  15. byte[] requestStringBytes = requestString.getBytes(ENCODING_UTF_8);
  16. httpConn.setRequestProperty("Content-length", "" + requestStringBytes.length);
  17. httpConn.setRequestProperty("Content-Type", "application/octet-stream");
  18. httpConn.setRequestProperty("Connection", "Keep-Alive");// 维持长连接
  19. httpConn.setRequestProperty("Charset", "UTF-8");
  20. //
  21. String name = URLEncoder.encode("黄武艺", "utf-8");
  22. httpConn.setRequestProperty("NAME", name);


  23. // 建立输出流,并写入数据
  24. OutputStream outputStream = httpConn.getOutputStream();
  25. outputStream.write(requestStringBytes);
  26. outputStream.close();
  27. // 获得响应状态
  28. int responseCode = httpConn.getResponseCode();


  29. if (HttpURLConnection.HTTP_OK == responseCode) {// 连接成功
  30. // 当正确响应时处理数据
  31. StringBuffer sb = new StringBuffer();
  32. String readLine;
  33. BufferedReader responseReader;
  34. // 处理响应流,必须与服务器响应流输出的编码一致
  35. responseReader = new BufferedReader(new InputStreamReader(httpConn.getInputStream(), ENCODING_UTF_8));
  36. while ((readLine = responseReader.readLine()) != null) {
  37. sb.append(readLine).append("\n");
  38. }
  39. responseReader.close();
  40. tv.setText(sb.toString());
  41. }
  42. } catch (Exception ex) {
  43. ex.printStackTrace();
  44. }


  45. }
复制代码

更多相关文章

  1. android 客户端 smtp 协议发送数据
  2. android http json请求3种不同写法
  3. android listview 长按弹出菜单--ContextMenu并进行删除操作
  4. android监听手机网络连接状态改变的后台服务
  5. Android核心基础(四)
  6. Android使用HttpURLConnection提交数据
  7. android 网络异步加载数据进度条
  8. Android(安卓)使用广播(BroadcastReceiver)传递数据
  9. mybatisplus的坑 insert标签insert into select无参数问题的解决

随机推荐

  1. Android(安卓)JSON:Gson,FastJson解析库的
  2. 在 Android(安卓)手机上运行 Node.js 应
  3. Android(安卓)创建与解析XML(一)---- SAX方
  4. Android:触摸移动的悬浮窗口
  5. Android线程模型(Painless Threading) ---
  6. android上消息推送的实现
  7. TableLayout中stretchColumns、shrinkCol
  8. android ListView分页加载
  9. 社区开放任务指南-3209-HTML5在Android上
  10. Android中TextView的内容展示不全的问题