首先聲明權限android
<uses-permission android:name="android.permission.INTERNET"/>
在build.gradle中加入api
compile 'com.squareup.okhttp:okhttp:2.4.0'
compile 'com.squareup.okio:okio:1.5.0'
API接口:https://www.juhe.cn/docs/api/id/46異步
Getide
public void okHttpGet(){ //構造一個Request對象,參數最起碼有個url, // 固然你能夠經過Request.Builder設置更多的參數好比:header、method等。 final Request request = new Request.Builder() .url(COOK_URL_GET + "key=" + COOK_KEY + "&menu=" + MENU) .build(); getResponse(request); }
Postpost
private void okHttpPostCook() { RequestBody body = new FormEncodingBuilder() .add("menu", MENU) .add("key", COOK_KEY) .build(); //構造一個Request對象,參數最起碼有個url, // 固然你能夠經過Request.Builder設置更多的參數好比:header、method等。 final Request request = new Request.Builder() .url(COOK_URL_POST) .post(body) .build(); getResponse(request); }
getResponse
public void getResponse(Request request){ //建立okHttpClient對象 OkHttpClient mOkHttpClient = new OkHttpClient(); //經過request的對象去構造獲得一個Call對象,相似於將你的請求封裝成了任務, // 既然是任務,就會有execute()和cancel()等方法 Call call = mOkHttpClient.newCall(request); //以異步的方式去執行請求,因此咱們調用的是call.enqueue,將call加入調度隊列, // 而後等待任務執行完成,咱們在Callback中便可獲得結果。 call.enqueue(new Callback() { @Override public void onFailure(Request request, IOException e) { Toast.makeText(MainActivity.this, "onFailure", Toast.LENGTH_SHORT); } @Override public void onResponse(final Response response) throws IOException { final String responseJSON = response.body().string(); //onResponse執行的線程並非UI線程,若是你但願操做控件,仍是須要使用handler等 runOnUiThread(new Runnable() { @Override public void run() { tv.setText(responseJSON); } }); } }); }