Android第一次項目

来源:http://www.cnblogs.com/mff520mff/archive/2017/08/13/7352135.html
-Advertisement-
Play Games

學習了一個月的Android,接觸了人生中第一個安卓項目,對於一個小白來說,總結是很重要的學習方法,以下我把學到的東西總結以下: 1. 1》okhttp3用法解析(邊貼代碼邊熟悉) 同步Get 下載一個文件,列印他的響應頭,以string形式列印響應體。 響應體的 string() 方法對於小文檔來 ...


學習了一個月的Android,接觸了人生中第一個安卓項目,對於一個小白來說,總結是很重要的學習方法,以下我把學到的東西總結以下:

1. 1》okhttp3用法解析(邊貼代碼邊熟悉)

 

public class OkhttpService  {

public static final MediaType JSON = MediaType.parse("application/json; charset=utf-8"); //json請求
public static final MediaType XML = MediaType.parse("application/xml; charset=utf-8");
private static OkhttpService instance;
private OkHttpClient client;

private OkhttpService() {
client = new OkHttpClient(); //獲取OkthhpClient實例
}
public static OkhttpService getInstance() {
return instance == null ? instance = new OkhttpService() : instance;
}

//魔盒批量封裝 (post提交json數據)
註:RequestBody body = RequestBody.create(JSON, json); //json數據為body
Request是OkHttp中訪問的請求,Builder是輔助類。Response即OkHttp中的響應。

public String insertBoxProd(List<BoxProdInfo> boxProd)throws IOException{
HttpUrl route = HttpUrl.parse("http://115.29.165.110:8085/RfService.svc/V1.0/Mh/InsertBoxProd/");
String json = new Gson().toJson(boxProd); //將boxProd序列化為json
Request request = new Request.Builder()
.url(route)
.post(RequestBody.create(JSON, json)) //使用Request的post方法來提交請求體RequestBody
.build();
Response response = client.newCall(request).execute();
boolean isOk=response.isSuccessful();
return response.body().string(); //response.body()返回ResponseBody類
}

//網點提交盒子收貨上架
public String receiverBox(String userCode, List<BoxReceiverInfo> boxReceiverInfos)throws IOException{
HttpUrl route=HttpUrl.parse("http://115.29.165.110:8085/RfService.svc/V1.0/Mh/ReceiveBox/")
.newBuilder()
.addPathSegment(userCode)
.build();
String json=new Gson().toJson(boxReceiverInfos);
Request request=new Request.Builder()
.url(route)
.put(RequestBody.create(JSON,json))
.build();
Response response=client.newCall(request).execute();
boolean isOk=response.isSuccessful();
return response.body().string();
}
}
註:以上兩個方法需要在前臺訪問。且需要返回結果提示給前臺(介面中需提供 States(返回狀態:成功或失敗),Description(結果描述),Data(數據)等)

eg:String result = OkhttpService.getInstance().receiverBox(userCode,boxReceiverInfos).toString();

2》官方文檔總結
(1)配置
導入Jar包
通過構建方式導入=== meaven

(2)基本要求
Request請求
Response響應

(3)基本使用
《--》Http GET

okHtttpClient client=new okHtttpClient();

String run(String url)throws IOException{
Request request = new Request.Builder().url(url).build();
Response response = client.newCall(request).execute();
if (response.isSuccessful()) {
return response.body().string();
}else{
throw new IOException("Unexpected code " + response);
}

}
註:Request是OkHttp中訪問的請求,Builder是輔助類,Response即OkHttp中的響應

《--》Http POST

》》》POST提交Json數據

public static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");
OkHttpClient client = new OkHttpClient();
String post(String url, String json) throws IOException {
RequestBody body = RequestBody.create(JSON, json);
Request request = new Request.Builder()
.url(url)
.post(body)
.build();
Response response = client.newCall(request).execute();
if (response.isSuccessful())
{
return response.body().string();
} else
{
throw new IOException("Unexpected code " + response);
}
}
註:使用Request的post方法來提交請求體RequestBody

》》》POST提交鍵值對
OkHttp也可以通過POST方式把鍵值對數據傳送到伺服器

OkHttpClient client = new OkHttpClient();
String post(String url, String json) throws IOException {
RequestBody formBody = new FormEncodingBuilder()
.add("platform", "android")
.add("name", "bug")
.add("subject", "XXXXXXXXXXXXXXX")
.build();

Request request = new Request.Builder()
.url(url)
.post(body)
.build();

Response response = client.newCall(request).execute();
if (response.isSuccessful())
{
return response.body().string();
} else {
throw new IOException("Unexpected code " + response);
}
}

(3)案例

佈局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="horizontal">
<Button android:id="@+id/bt_get"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="烏雲Get請求"/>

<Button android:id="@+id/bt_post"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="烏雲Post請求"/>

LinearLayout>

<TextView android:id="@+id/tv_show"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>

LinearLayout>

Java代碼:
由於android本身是不允許在UI線程做網路請求操作的,所以我們自己寫個線程完成網路操作

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import com.squareup.okhttp.FormEncodingBuilder;
import com.squareup.okhttp.OkHttpClient;
import com.squareup.okhttp.Request;
import com.squareup.okhttp.RequestBody;
import com.squareup.okhttp.Response;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

private Button bt_get;
private Button bt_post;
final OkHttpClient client = new OkHttpClient();

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main2);
bt_get=(Button)findViewById(R.id.bt_get);
bt_post=(Button)findViewById(R.id.bt_post);
bt_get.setOnClickListener(this);
bt_post.setOnClickListener(this);
}
@Override
public void onClick(View view) {
switch (view.getId()){
case R.id.bt_get:
getRequest();
break;

case R.id.bt_post:
postRequest();
break;
}
}
private void getRequest() {
final Request request=new Request.Builder()
.get()
.tag(this)
.url("http://www.wooyun.org")
.build();
new Thread(new Runnable() {
@Override
public void run() {
Response response = null;
try {
response = client.newCall(request).execute();
if (response.isSuccessful()) {
Log.i("WY","列印GET響應的數據:" + response.body().string());
} else {
throw new IOException("Unexpected code " + response);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}).start();
}

private void postRequest() {
RequestBody formBody = new FormEncodingBuilder()
.add("","")
.build();
final Request request = new Request.Builder()
.url("http://www.wooyun.org")
.post(formBody)
.build();
new Thread(new Runnable() {
@Override
public void run() {
Response response = null;
try {
response = client.newCall(request).execute();
if (response.isSuccessful()) {
Log.i("WY","列印POST響應的數據:" + response.body().string());
} else {
throw new IOException("Unexpected code " + response);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}).start();
}
}

剩下的簡單說明:

   同步Get

       下載一個文件,列印他的響應頭,以string形式列印響應體。
       響應體的 string() 方法對於小文檔來說十分方便、高效。但是如果響應體太大(超過1MB),應避免適應 string()方法 ,因為他會將把整個文檔載入到記憶體中。對於超過1MB的響應    body,應使用流的方式來處理body。

   非同步Get

    在一個工作線程中下載文件,當響應可讀時回調Callback介面。讀取響應時會阻塞當前線程。OkHttp現階段不提供非同步api來接收響應體。

    

   提取響應頭

   典型的HTTP頭 像是一個 Map

    

      Post方式提交String

        使用HTTP POST提交請求到服務。這個例子提交了一個markdown文檔到web服務,以HTML方式渲染markdown。因為整個請求體都在記憶體中,因此避免使用此api提交大文        檔 (大於1MB)。

 

     待續。。。。。。。。。

     部分出自  http://m.2cto.com/net/201605/505364.html

 






       



 

                     

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • JavaScript表單 這篇文章的主要目的是介紹表單相關的知識,如表單基礎知識、文本框腳本相關用法、選擇框腳本相關用法以及等知識。雖然在現代web開發中,很少會使用form預設行為提交表單數據,而是會禁用預設行為,然後使用Ajax方式通過POST請求非同步提交表單數據。但是這並不代表form表單不重 ...
  • 轉自:http://www.cnblogs.com/linhaixin/p/5581939.html 獲取(代碼): 修改(代碼): ...
  • 在Android中,共有五種佈局方式,分別是:LinearLayout(線性佈局),FrameLayout(幀佈局),AbsoluteLayout(絕對佈局),RelativeLayout(相對佈局), TableLayout(表格佈局);還有一種,是在Android4.0以後出現的新佈局:Grid ...
  • 一,工程圖。 二,代碼。 ViewController.h ViewController.m ...
  • ...
  • (1)下載二維碼的庫源碼 鏈接:http://pan.baidu.com/s/1pKQyw2n 密碼:r5bv 下載完成後打開可以看到 libzxing 的文件夾,最後添加進 Android Studio,操作 :File 》New 》Import Moudle (2)按鈕單擊事件為 scanner ...
  • SharedPreferences是Android四種數據存儲技術中的一種,它是一種輕型的數據存儲方式,它的本質是基於XML文件存儲key-value鍵值對數據,通常用來存儲一些簡單的配置信 息,其對象本身只能獲取數據,不支持存儲和修改,存儲和修改需要通過 Edit 對象來實現,例如用戶登錄時對賬號 ...
  • 1. Android中如何從一個Activity中ArrayList<HashMap<String,Object>>傳遞到另一個activity? eg: 存:intent.putExtra("arrayList", dataList); 取(記得強制類型轉換): ArrayList<HashMap ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...