我使用android-async-http庫從Loopj,onFailure沒有在我的代碼中調用,我已經嘗試了所有三種方法..onFailure沒有被調用 - onFailure(...)沒有被覆蓋,但回調被接受
W/JsonHttpRH:onFailure處(INT,部首[],字符串,Throwable的)沒有重寫,但回調接收
我使用android-async-http庫從Loopj,onFailure沒有在我的代碼中調用,我已經嘗試了所有三種方法..onFailure沒有被調用 - onFailure(...)沒有被覆蓋,但回調被接受
W/JsonHttpRH:onFailure處(INT,部首[],字符串,Throwable的)沒有重寫,但回調接收
下面是重寫正確的方法,
public void onFailure(int statusCode, Header[] headers, String responseString, Throwable throwable) {
super.onFailure(statusCode, headers, responseString, throwable);
Log.d("Failed: ", ""+statusCode);
Log.d("Error : ", "" + throwable);
}
使用這個 對於頭
import cz.msebera.android.httpclient.Header;
你需要重寫正確的方法。一些onFailure是: 1.public void onFailure(int statusCode,Header [] headers,Throwable throwable,JSONObject errorResponse) 2.public void onFailure(int statusCode,Header [] headers,Throwable throwable,JSONArray errorResponse) 3 public void onFailure(int statusCode,Header [] headers,String responseString,Throwable throwable)
選擇正確的onFailure來避免錯誤。