colly_wyx
2018-06-14 bef2c06923d3ba6727654f734bb93d5a09855dc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package net.phalapi.sdk;
 
import org.json.JSONObject;
 
/**
 * JSON解析
 */
public class PhalApiClientParserJson implements PhalApiClientParser {
 
    public PhalApiClientResponse parse(String apiResult) {
        if (apiResult == null) {
            return new PhalApiClientResponse(408, "", "Request Timeout");
        }
        
        try {
            JSONObject jsonObj = new JSONObject(apiResult);
            
            return new PhalApiClientResponse(
                    jsonObj.getInt("ret"), jsonObj.getString("data"), jsonObj.getString("msg"));
        } catch (Exception ex) {
            return new PhalApiClientResponse(500, "", "Internal Server Error Or " + ex.getMessage());
        }
    }
}