您好,登錄后才能下訂單哦!
請求方式GET和POST的簡單分別:
get方式是把參數附加到URL地址后面,如:
http://localhost:8080/loginServlet.html?username=123&password=456
post是將請求參數放到請求體中,以流的方式傳到服務器,另外上傳文件時,一定是post方式
下面的代碼是用post方式模擬用戶登錄
package com.yuanlp.qqloginpost; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.text.TextUtils; import android.view.View; import android.widget.Button; import android.widget.CheckBox; import android.widget.EditText; import android.widget.Toast; import org.json.JSONException; import org.json.JSONObject; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.net.URLEncoder; public class MainActivity extends AppCompatActivity { private static final int LOAD_SUCCESS =1 ; private static final int LOAD_ERROR =2 ; private EditText mQqNum; private EditText mQqPwd; private CheckBox mCb_rember; private Button sub; private String mQq; private String mPwd; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mQqNum= (EditText) findViewById(R.id.et_qqNum); mQqPwd = (EditText) findViewById(R.id.et_pwd); mCb_rember = (CheckBox) findViewById(R.id.cb_rember); sub = (Button) findViewById(R.id.bt_sub); } /** * 按鈕對應的點擊方法 * @param view */ public void login(View view){ //Toast.makeText(this,"點擊了提交",Toast.LENGTH_SHORT).show(); mQq = mQqNum.getText().toString().trim(); mPwd = mQqPwd.getText().toString().trim(); //mCb_rember.getText().toString().trim(); if (TextUtils.isEmpty(mQq)||TextUtils.isEmpty(mPwd)){ Toast.makeText(this,"QQ號碼或者密碼為空",Toast.LENGTH_SHORT).show(); return; } //這里設置按鈕不能點,應為一直點,就一直發送請求,會造成一直請求數據 sub.setEnabled(false); /** * 點擊按鈕事件,在主線程中開啟一個子線程進行網絡請求 * (因為在4.0只有不支持主線程進行網絡請求,所以一般情況下,建議另開啟子線程進行網絡請求等耗時操作)。 */ //請求網絡 new Thread(){ @Override public void run() { try { Thread.sleep(5000); String path="http://192.168.1.111:10010/aos/pdaLogin.jhtml"; URL url = new URL(path); //打開httpurlconnection HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setRequestMethod("POST"); //設置get方式獲取數據 conn.setConnectTimeout(5000); //設置連接超時時間5秒 conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); //如果設置方式為post,則必須制定該屬性 //將數據進行編碼,然后會自動的將該數據放到post中傳到后臺 String data="username="+ URLEncoder.encode(mQq,"utf-8")+"&password="+URLEncoder.encode(mPwd,"utf-8"); //指定長度 conn.setRequestProperty("Content-length",String.valueOf(data.length())); /** * post是以流的方式寫給服務器 */ conn.setDoOutput(true); //指定輸出模式 conn.getOutputStream().write(data.getBytes()); //將要傳遞的數據寫入輸出流 int code = conn.getResponseCode(); // 獲取response狀態,200表示成功獲取資源,404表示資源不存在 if (code==200){ InputStream is=conn.getInputStream(); BufferedReader br=new BufferedReader(new InputStreamReader(is)); StringBuffer sb=new StringBuffer(); String len=null; while((len=br.readLine())!=null){ sb.append(len); } String result=sb.toString(); /** * 這里就不用handler方式來處理子線程的數據了 */ runToastAnyThread(result); } } catch (Exception e) { e.printStackTrace(); } } }.start(); } /** * 在任何線程中都可以彈出吐司 * @param result */ private void runToastAnyThread(final String result) { /** * 在這個run方法里寫的任何方法都是在UI線程中執行 */ runOnUiThread(new Runnable() { @Override public void run() { JSONObject jsonObject=null; try { jsonObject=new JSONObject(result); String code=jsonObject.get("appcode").toString(); if ("0".equals(code)){ Toast.makeText(getApplicationContext(),"登錄失敗",Toast.LENGTH_SHORT).show(); }else if("1".equals(code)){ Toast.makeText(getApplicationContext(),"登錄成功",Toast.LENGTH_SHORT).show(); } sub.setEnabled(true); } catch (JSONException e) { e.printStackTrace(); } } }); } }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。