android 之post,get方式请求数据

get方式和post方式的区别:

1.请求的URL地址不同:
  post:"http://xx:8080//servlet/LoginServlet"
  get:http://xxx:8080//servlet/LoginServlet?username=root&pwd=123

2.请求头不同:
  ****post方式多了几个请求头:Content-Length   ,   Cache-Control , Origin

    openConnection.setRequestProperty("Content-Length", body.length()+"");
    openConnection.setRequestProperty("Cache-Control", "max-age=0");
    openConnection.setRequestProperty("Origin", "http://192.168.13.83:8080");

  ****post方式还多了请求的内容:username=root&pwd=123

    //设置UrlConnection可以写请求的内容
    openConnection.setDoOutput(true);
    //获取一个outputstream,并将内容写入该流
    openConnection.getOutputStream().write(body.getBytes());

3.请求时携带的内容大小不同
  get:1k
  post:理论无限制

登录的布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.example.yb.myapplication.MainActivity">

    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/input_username"
        android:hint="@string/input_username"/>

    <EditText
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:inputType="textPassword"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/input_password"
        android:hint="@string/input_password"/>

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <CheckBox
            android:layout_marginLeft="30dp"
            android:layout_centerVertical="true"
            android:layout_alignParentLeft="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/cb_rem"
            android:text="@string/reme_password"/>

        <Button
            android:layout_marginRight="30dp"
            android:paddingLeft="10dp"
            android:paddingRight="10dp"
            android:layout_alignParentRight="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/bt_login"
            android:text="@string/bt_login"/>
    </RelativeLayout>
</LinearLayout>

登录的Activity代码

    private EditText et_username;
    private EditText et_password;
    private CheckBox cb_rem;
    private Button bt_login;
    private Context mcontext;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_get_post);

        et_username = (EditText) findViewById(R.id.input_username);
        et_password = (EditText) findViewById(R.id.input_password);
        cb_rem = (CheckBox) findViewById(R.id.cb_rem);
        bt_login = (Button) findViewById(R.id.bt_login);
        bt_login.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                login();
            }
        });

        //界面加载完回显密码和用户名,读取文件,回显,用户名和密码的封装可以是:数组封装,Map封装,bean封装,
       /* Map<String, String> map = UserInfoUtil.getUserInfo(mcontext);
        if (map != null) {
            String username = map.get("username");
            String password = map.get("password");
            et_username.setText(username);
            et_password.setText(password);
            cb_rem.setChecked(true);
        }*/

    }

    public void login() {

        final String username = et_username.getText().toString().trim();
        final String password = et_password.getText().toString().trim();
        final boolean isRem = cb_rem.isChecked();
        //判断是否密码或者用户名为空
        if (TextUtils.isEmpty(username) || TextUtils.isEmpty(password)) {
            Toast.makeText(this, "用户名和密码不能为空", Toast.LENGTH_SHORT).show();
            return;
        }

        //子线程操作,子线程不能做 更新U I
        new Thread(new Runnable() {
            @Override
            public void run() {
                //get方法登录是否成功
               // final boolean b = requestNetForGetLogin(username, password);
                final boolean b = requestNetForPOSTLogin(username, password);
                System.out.println("=====================是否登录成功:" + b);

                runOnUiThread(new Runnable() {  //直接用acitivty类的runOnUiThread(runnable run)方法,可以在子线程中更新UI
                    @Override
                    public void run() {
                        //运行在主线程里了
                        if (b) {
                            //判断是否记住密码,要保存到本地,封装成方法
                            if (isRem) {
                                //保存用户名和密码
                                boolean result = UserInfoUtil.saveUserInfo(mcontext, username, password);
                                if (result) {
                                    Toast.makeText(getApplicationContext(), "用户名和密码保存成功", Toast.LENGTH_SHORT).show();
                                } else {
                                    Toast.makeText(getApplicationContext(), "用户名和密码保存失败", Toast.LENGTH_SHORT).show();
                                }
                            } else {
                                Toast.makeText(getApplicationContext(), "登录成功", Toast.LENGTH_SHORT).show();
                            }
                        } else {
                            Toast.makeText(getApplicationContext(), "登录失败", Toast.LENGTH_SHORT).show();
                        }
                    }
                });

            }
        }).start();
        //请求服务器
    }

    //get方式登录
    private boolean requestNetForGetLogin(String username, String password) {
        //urlConnection请求服务器,验证
        try {
            //1:url对象
            URL url = new URL("http://192.168.1.100:8081/servlet/LoginServlet?username=" + username + "&pwd=" + password + "");

            //2;url.openconnection
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();

            //3
            conn.setRequestMethod("GET");
            conn.setConnectTimeout(10 * 1000);

            //4
            int code = conn.getResponseCode();
            if (code == 200) {
                InputStream inputStream = conn.getInputStream();
                String result = StreamUtil.stremToString(inputStream);
                System.out.println("=====================服务器返回的信息::" + result);
                if (result.contains("success")) {
                    return true;
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return false;
    }

    //post方式登录
    private boolean requestNetForPOSTLogin(String username, String password) {
        //urlConnection请求服务器,验证
        try {
            //1:url对象
            URL url = new URL("http://192.168.1.100:8081//servlet/LoginServlet");

            //2;url.openconnection
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();

            //3设置请求参数
            conn.setRequestMethod("POST");
            conn.setConnectTimeout(10 * 1000);
        //请求头的信息
            String body="username="+username+"&pwd="+password;
            conn.setRequestProperty("Content-Length", String.valueOf(body.length()));
            conn.setRequestProperty("Cache-Control","max-age=0");
            conn.setRequestProperty("Origin","http://192.168.1.100:8081");

            //设置conn可以写请求的内容
            conn.setDoOutput(true);
            conn.getOutputStream().write(body.getBytes());

            //4响应码
            int code = conn.getResponseCode();
            if (code == 200) {
                InputStream inputStream = conn.getInputStream();
                String result = StreamUtil.stremToString(inputStream);
                System.out.println("=====================服务器返回的信息::" + result);
                if (result.contains("success")) {
                    return true;
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return false;
    }

新建一个工具包Util, 新建一个类UserInfoUtil

public class UserInfoUtil {
    public static boolean saveUserInfo(Context context, String username, String password) {
        //需要使用shrare10.sharedPreference的使用
        try {

            //1使用Context创建一个SharePerference对象
            SharedPreferences sharedPreferences = context.getSharedPreferences("userinfo.txt", Context.MODE_PRIVATE);

            //2SharePerference对象得到Editor对象
            Editor edit = sharedPreferences.edit();

            //3往Editor对象里面添加数据
            edit.putString("username",username);
            edit.putString("password",password);

            //4提交Editor对象
            edit.commit();
            return true;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return false;

    }

    //用户名和密码的封装可以是:数组封装,Map封装,bean封装,这里采用map封装
    public static Map<String, String> getUserInfo(Context context) {
        try {
            //1 使用Context创建一个SharePerference对象
            SharedPreferences sharedPreferences = context.getSharedPreferences("userinfo.txt", Context.MODE_PRIVATE);

            //2SharePerference对象获取存放的数据
            String username = sharedPreferences.getString("username", "");
            String password = sharedPreferences.getString("password", "");

            HashMap<String, String> hashMap = new HashMap<String, String>();
            hashMap.put("username", username);
            hashMap.put("password", password);
            return hashMap;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

}

新建工具类StreamUtil,把获取的读取流转为String返回

public class StreamUtil {
    /**
     * 获取的读取流转为String返回
     *
     * @param inputStream
     */
    public static String stremToString(InputStream in) {
        String result="";
        try {
            //创建一个字节数组写入流
            ByteArrayOutputStream out=new ByteArrayOutputStream();

            byte[] buffer=new byte[1024];
            int length=0;
            while((length=in.read(buffer))!=-1){  //如果返回-1 则表示数据读取完成了。
                out.write(buffer,0,length);//写入数据
                out.flush();
            }
            result=out.toString();//写入流转为字符串
            out.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;
    }
}
时间: 2024-10-26 10:26:19

android 之post,get方式请求数据的相关文章

【黑马Android】(05)短信/查询和添加/内容观察者使用/子线程网络图片查看器和Handler消息处理器/html查看器/使用HttpURLConnection采用Post方式请求数据/开源项目

备份短信和添加短信 操作系统短信的uri: content://sms/ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.itheima28.backupsms" android:versionCode="1

get和post方式请求数据,jsonp

get方式请求数据: p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 19.0px Consolas; color: #289c97 } p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 19.0px Consolas; color: #060606 } p.p3 { margin: 0.0px 0.0px 0.0px 0.0px; font: 19.0px Consolas; color: #4663cc }

使用HttpURLConnection采用get方式或post方式请求数据

使用URLConnection提交请求: 1.通过调用URL对象openConnection()方法来创建URLConnection对象 2.设置URLConnection的参数和普通的请求属性 3.如果只是发送GET方式请求,使用connet方法建立和远程资源之间的实际连接即可:如果发送POST方式的请求,需要获取URLConnection实例对应的输出流来发送请求参数. 4.远程资源变为可用,程序可以访问远程资的头字段,或通过输入流读取远程资源的数据. 提交数据到服务器端(存在中文乱码):

[android] 采用post的方式提交数据

GET:内部实现是组拼Url的方式,http协议规定最大长度4kb,ie浏览器限制1kb POST和GET的区别比较了一下,多了几条信息 Content-Type:application/x-www-form-urlencoded Content-Length:93 主体内容 只需修改上一节代码中的几个地方: 调用HttpURLConnection对象的setRequestMethod(“POST”)方法 调用HttpURLConnection对象的setRequestProperty()方法,

基于php curl以post方式请求数据

<?php          $url = 'http://127.0.0.1/test.php';    //接口地址      $data = array(              'key1'=>'value1',         'key2'=>'value2'     );          $json_str = curl_post($url, $data);          $json_arr = json_decode($json_str, TRUE);       

Android 发送HTTP GET POST 请求以及通过 MultipartEntityBuilder 上传文件

折腾了好几天的 HTTP 终于搞定了,经测试正常,不过是初步用例测试用的,因为后面还要修改先把当前版本保存在博客里吧. 其中POST因为涉及多段上传需要导入两个包文件,我用的是最新的 httpmine4.3 发现网上很多 MultipartEntity 相关的文章都是早起版本的,以前的一些方法虽然还可用,但新版本中已经不建议使用了,所以全部使用新的方式 MultipartEntityBuilder 来处理了. httpmime-4.3.2.jar httpcore-4.3.1.jar 下载地址:

Android传统HTTP请求get----post方式提交数据(包括乱码问题)

1.模仿登入页面显示(使用传统方式是面向过程的) 使用Apache公司提供的HttpClient  API是面向对象的 (文章底部含有源码的连接,包括了使用async框架) (解决中文乱码的问题.主要是对中文的数据进行URL编码) android手机默认的编码是UTF-8 2.手机截图Demo 3.server截图 代码例如以下: server端的代码: //測试 android设备登入 public class Login extends HttpServlet { public void d

Android传统HTTP请求get----post方式提交数据(包含乱码问题)

1.模仿登入页面显示(使用传统方式是面向过程的) 使用Apache公司提供的HttpClient  API是面向对象的 (解决中文乱码的问题,主要是对中文的数据进行URL编码) android手机默认的编码是UTF-8 2.手机截图Demo 3.服务器截图 代码如下: 服务器端的代码: //测试 android设备登入 public class Login extends HttpServlet { public void doGet(HttpServletRequest request, Ht

Android开发使用GET方式向服务器请求和发送数据

#1.首先先用新建个servlet处理登陆请求 代码如下.只实现了doGet方法 package com.wzw.servlet; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSe