时间:2021-05-19
在这我们首先了解Android客户端向服务器提交数据的底层做法。get、post两种方法提交数据,下面我们用示例了解get以及post方式。
需要在布局文件中增加两个个EditText控件和两个登录的Button控件。其中一个Button是使用get方式提交数据,一个是使用post提交数据。
一、使用get方式提交数据
需要写一个异步任务类继承AsyncTask,重写它的两个方法。代码如下:
public class MainActivity extends AppCompatActivity { private EditText et_main_name; private EditText et_main_pwd; private HttpURLConnection httpURLConnection; private URL url; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); et_main_name = (EditText) findViewById(R.id.et_main_name); et_main_pwd = (EditText) findViewById(R.id.et_main_pwd); } //获取GET提交数据的点击事件 public void getdata(View view){ String name=et_main_name.getText().toString(); String pwds=et_main_pwd.getText().toString(); String path="http://192.168.43.143:8080/login/login.xhtml"; new myTask().execute(name,pwds,path,"GET"); } //写一个异步任务类继承AsyncTask,重写它的两个方法 class myTask extends AsyncTask{ @Override protected Object doInBackground(Object[] params) { //获取参数的值 String name = params[0].toString(); String pwds = params[1].toString(); String path = params[2].toString(); String type = params[3].toString(); String s = "uname=" + name + "&pwd=" + pwds; //判断提交数据的类型1、get 2、post try { if ("GET".equals(type)) {//用get方式提交 path = path + "?" + s; url = new URL(path); httpURLConnection = (HttpURLConnection) url.openConnection(); httpURLConnection.setRequestMethod("GET"); } else if ("POST".equals(type)) {//用post方式提交 } httpURLConnection.setConnectTimeout(5000); if (httpURLConnection.getResponseCode() == 200) { InputStream inputStream = httpURLConnection.getInputStream(); BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream)); String result = bufferedReader.readLine(); return result; } } catch (MalformedURLException e) { e.printStackTrace(); }catch (ProtocolException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return null; } @Override protected void onPostExecute(Object o) { String str= (String) o; Toast.makeText(MainActivity.this,str,Toast.LENGTH_SHORT).show(); super.onPostExecute(o); } } }二、使用post方式提交数据
post和get一样需要写一个异步任务类继承AsyncTask,重写它的两个方法。但是post需要设置Content-Length、Content-Type以及对外输出数据。而且请求的路径不同,post相对于比get安全。代码如下:
public class MainActivity extends AppCompatActivity { private EditText et_main_name; private EditText et_main_pwd; private HttpURLConnection httpURLConnection; private URL url; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); et_main_name = (EditText) findViewById(R.id.et_main_name); et_main_pwd = (EditText) findViewById(R.id.et_main_pwd); } //获取POST提交数据的点击事件 public void postdata(View view){ String name=et_main_name.getText().toString(); String pwds=et_main_pwd.getText().toString(); String path="http://192.168.43.143:8080/login/login.xhtml"; new myTask().execute(name,pwds,path,"POST"); } //写一个异步任务类继承AsyncTask,重写它的两个方法 class myTask extends AsyncTask{ @Override protected Object doInBackground(Object[] params) { //获取参数的值 String name = params[0].toString(); String pwds = params[1].toString(); String path = params[2].toString(); String type = params[3].toString(); String s = "uname=" + name + "&pwd=" + pwds; //判断提交数据的类型1、get 2、post try { if ("GET".equals(type)) {//用get方式提交 } else if ("POST".equals(type)) {//用post方式提交 url = new URL(path);//得到请求的路径 httpURLConnection = (HttpURLConnection) url.openConnection(); //设置Content-Length Content-Type httpURLConnection.setRequestProperty("Content-Length", s.length() + ""); httpURLConnection.setRequestProperty("Content-Type", "application/x-" />三、总结
1、get方式与post方式请求的路径(URL地址)不同。
2、post方式需要对请求头的设置。
//设置Content-Length Content-Type httpURLConnection.setRequestProperty("Content-Length", s.length() + ""); httpURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");3、post方式需要请求内容,而get方式的相应内容在URL地址中。
4、post方式与get方式的请求时所携带的内容大小不同。
get:1k。
post:理论上是无限制的,相对于而言post适合传大量数据。
5、get方式的数据直接显示在URL地址中,这是不安全的;而post方式不会,安全性相对于比较高。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
表单提交中,ASP.NET的Get和Post方式的区别归纳如下几点: 1.get是从服务器上获取数据,post是向服务器传送数据。 2.get是把参数数
这篇文章将介绍向服务器发送数据,并且服务器将数据的处理结果返回给客户端,这次先介绍使用Get方式向服务器发送数据,下篇将介绍使用Post方式向服务器发送数据,需
最近一段时间在学习前端向服务器发送数据和请求数据,下面总结了一下向服务器发送请求用get和post的几种不同请求方式:1.用form表单的方法:(1)get方法
我在上一篇文章中介绍了使用Get方式提交数据到Tomcat服务器,这篇将介绍使用Post方式提交数据到服务器,由于Post的方式和Get方式创建Web工程是一模
区别与联系:1、get是从服务器上获取数据,post则是向服务器传送数据;2、get将表单中数据的按照variable=value的形式,添加到action所指