第一种方案:可以使用try来手动抛出异常,并打印错误信息

MatchBean matchBean = null;
try {
    matchBean = new Gson().fromJson(msg.obj.toString(), MatchBean.class);
} catch (Exception e) {
    e.printStackTrace();
    StringWriter sw = new StringWriter();
    e.printStackTrace(new PrintWriter(sw, true));
    String str = sw.toString();
    LogUtils.e(str);
}

第二种方案:判断返回的数据是否为json格式

/**
 * 判断是否是json结构
 */
public static boolean isJson(String value) {
    try {
        new JSONObject(value);
    } catch (JSONException e) {
        return false;
    }
    return true;
}
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐