Android 9編程通俗演義 之 第16章 網絡通訊

16.2 Android HTTP通訊

Android 原生的 HttpURLConnection 工具 在 WebView 中顯示,使用loadData(html,"text/html","utf8")方法 ;html

16.3 使用「異步任務」


摘自 《Android 併發開發》git

16.4 使用 OkHttp進行網絡通訊

快速入門 http://square.github.io/okhttp/ 託管網頁 https://github.com/square/okhttp 在Android的Module的Gradle 腳本中添加依賴 dependencies{ implementation 'com.squareup.okhttp3:okhttp:4.0.1' }github

16.5 使用Retrofit進行網絡通訊

注意Retrofit是基於OkHttp建立的,比OkHttp使用簡單一些; 官網 http://square.github.io/retrofit/網絡

相關文章
相關標籤/搜索