代码之家  ›  专栏  ›  技术社区  ›  김유진

改装错误消息已中断

  •  1
  • 김유진  · 技术社区  · 7 年前

    但是回应。isSuccessful()为false。

    我想看错误按摩。

    @Override
            public void onResponse(Call<UserInfo> call, Response<UserInfo> response) {
    
                if (!response.isSuccessful()) {
                    try {
                       Log.d("Success false", response.errorBody().string()); // letter broken!!
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
    
                    return;
                }
    }
    

    打印:

    {"error":"\ub85c\uadf8\uc778\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}
    

    2 回复  |  直到 7 年前
        1
  •  0
  •   civic.LiLister    7 年前

    我认为错误消息是UTF8编码的字符串。你可以用URLDecoder解码。解码

        2
  •  0
  •   김유진    7 年前

    我修好了!

    错误消息是json数据。 json数据需要转换。

    JSONObject jsonobject = new JSONObject ( response.errorBody().string());
    Log.d("error",jsonobject.getString("error");