<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
URI(Uniform Resource Identifier,統一資源標誌符),表示web上的每一種可用資源,具體的東西例如HTML檔案,影象、視訊、程式等。
URL(Uniform Resource Locator,統一資源定 位 器),也就是網路地址。
URL是URI的一種。
URI是對網路資源更寬泛的一種標識。
URL通常指的是網路連線,更多以http://www開頭。
網址:https://www.yiketianqi.com/index/doc,登陸後會自動生成屬於自己的appid和appsecret
主要目的:從伺服器端獲取符合條件的資料。
會向伺服器端傳送少量資料,攜帶的引數會拼接在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("深圳"); } }
執行結果:
主要目的:向伺服器端提交資料。
也會接收少量伺服器端的響應資料,攜帶的引數會單獨放到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!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45