首頁 > 軟體

Android網路開發中GET與POST請求詳解

2022-12-15 14:02:20

1.URI與URL

URI(Uniform Resource Identifier,統一資源標誌符),表示web上的每一種可用資源,具體的東西例如HTML檔案,影象、視訊、程式等。

URL(Uniform Resource Locator,統一資源定 位 器),也就是網路地址。

URL是URI的一種。

URI是對網路資源更寬泛的一種標識。

URL通常指的是網路連線,更多以http://www開頭。

2.申請一個天氣的免費API

網址:https://www.yiketianqi.com/index/doc,登陸後會自動生成屬於自己的appid和appsecret

3.GET請求

主要目的:從伺服器端獲取符合條件的資料。

會向伺服器端傳送少量資料,攜帶的引數會拼接在URL後面,引數是少量而有限的

GET請求的URL舉例:

https://www.tianqiapi.com/free/day?cityid=10010&cityname=北京&data=20220728

協定(https://)域名及埠(www.tianqiapi.com:80) 路徑(/free/day)條件(cityid=10010&cityname=北京&data=20220728)

NetUtil程式如下:

public class NetUtil{
	public static String BASE_URL="https://v0.yiketianqi.com/free/day";
	public static String APP_ID="14846972";
	public static String APP_SECRET="Guya4Gz2";
	public static String doGet(String url){ 
		BufferedReader reader = null;
		String bookHSONString = null;
		try{
			//1.HttpURLConnection建立連線
			HttpURLConnection httpURLConnection = null;
			URL requestUrl = new URL(url);
			httpURLConnection = (HttpURLConnection)requestUrl.openconnection();//開啟連線
			httpURLConnection.setRequestMethod("GET");//兩種方法GET/POST
			httpURLConnection.setConnectionTimeout(5000);//設定超時連線時間
			httpURLConnection.connect();
			//2.InputStream獲取二進位制流
			InputStream inputstream = httpURLConnection.getInputStream();
			//3.InputStreamReader將二進位制流進行包裝成BufferedReader
			reader = new BufferedReader(new InputStreamReader(inputStream));
			//4.從BufferedReader中讀取String字串,用StringBulider接收
			StringBulider bulider = new StringBulider();
			String line;
			while((line=reader.readLine())!=null){
				bulider.append(line);
				bulider.append("n");
				}
			if(bulider.length()==0)
			{
				return null;
			}
			//5.StringBulider將字串進行拼接
			bookJSONString = bulider.toString();
			}catch(MalformedURLException e){
			e.printStackTrace();
			}finally {
            // 關閉連線
            if (urlConnection != null) {
                urlConnection.disconnect();
            }
            if (reader != null) {
                try {
                    reader.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
		return bookJSONString;
		}
	public static String getWeatherOfCity(String city){
		//拼接處get請求的url
		String weatherUrl = BASE_URL+"?"+"appid="+APP_ID+"&"+"appsecret="+APP_SECRET+"&"+"city="+city;
		//列印上面的url
		Log.d("fan","-----weatherUrl----"+weatherUrl);
		//呼叫上文所寫的doGet方法,傳參
		String weatherResult = doGet(weatherUrl);
		return decodeUnicode(weatherResult);
	}
	//解碼Unicode,將其轉化為我們認識的漢字
	public static String decodeUnicode(String unicodeStr) {
        if (unicodeStr == null) {
            return null;
        }
        StringBuffer retBuf = new StringBuffer();
        int maxLoop = unicodeStr.length();
        for (int i = 0; i < maxLoop; i++) {
            if (unicodeStr.charAt(i) == '\') {
                if ((i < maxLoop - 5) && ((unicodeStr.charAt(i + 1) == 'u') || (unicodeStr.charAt(i + 1) == 'U')))
                    try {
                        retBuf.append((char) Integer.parseInt(unicodeStr.substring(i + 2, i + 6), 16));
                        i += 5;
                    } catch (NumberFormatException localNumberFormatException) {
                        retBuf.append(unicodeStr.charAt(i));
                    }
                else
                    retBuf.append(unicodeStr.charAt(i));
            } else {
                retBuf.append(unicodeStr.charAt(i));
            }
        }
        return retBuf.toString();
    }
}

MainActivity.java程式如下:

public class MainActivity extends AppCompatActivity{
	private TextView tvContent;
	//此處寫一個handler程式
	private Handler mHandler = new Handler(Looper.myLooper()){
		@Override
		public void handleMessage(@NonNull Message msg){
		super.handlerMessage(msg);
		if(msg.what==0){
			String strData = (String)msg.obj;
			tvContent.setText(strData);
			Toast.makeText(MainActivity.this,"主執行緒收到網路訊息啦!",Toast.LENGTH_SHORT).show();
			}
		}
	};
	@Override
	protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        tvContent = findViewById(R.id.tv_content);
    }
    public void start(View view){
    	//做一個耗時任務
    	new Thread(new Runnable(){
    		@Override
    		public void run(){
    			String stringFormNet = getStringFormNet();
    			//使用handler來傳送訊息
				Message message = new Message();
				message.what = 0;//用於區分是誰發的訊息
    			message.obj = stringFormNet;
    			mHandler.sendMessage(meaasge);
    			}
    		}).start();
    		Toast.makeText(MainActivity.this,"開啟子執行緒請求網路!",Toast.LENGTH_SHORT).show();
    		}
    private String getStringFormNet(){
		//從網路上獲取字串
		return NetUtil.getWeatherofCity("深圳");
	}
}

執行結果:

4.POST請求

主要目的:向伺服器端提交資料。

也會接收少量伺服器端的響應資料,攜帶的引數會單獨放到map中,引數是大量的。

POST請求的URL舉例:

https://www.tianqiapi.com/free/day+Map<String,String><city_id,1010><city_name,北京><date,20220728>

到此這篇關於Android網路開發中GET與POST請求詳解的文章就介紹到這了,更多相關Android GET與POST內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com