简体   繁体   中英

Getting HTTP response code using Android Asynchronous Http Client (Loopj)

I'm using loopj to talk to a rest server which has different HTTP response codes for specific successful responses (ie 200, 202). The AsyncHttpResponseHandler has an onSuccess(String content) callback but nothing that returns the HTTP response code. How can I get this?

Try

@Override    
public void onSuccess(int statusCode, String content) {
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM