代码之家  ›  专栏  ›  技术社区  ›  Phate

URL连接:如何获取返回状态的正文!=200?

  •  1
  • Phate  · 技术社区  · 9 年前

    我的网络服务有时返回状态401。 它带有一个JSON主体,类似于:

    {"status": { "message" : "Access Denied", "status_code":"401"}}
    

    现在,这是我用来发出服务器请求的代码:

    HttpURLConnection conn = null;
    try{
       URL url = new URL(/* url */);
       conn = (HttpURLConnection)url.openConnection(); //this can give 401
       JsonReader reader = new JsonReader(new InputStreamReader(conn.getInputStream()));
    
       JsonObject response = gson.fromJson(reader, JsonObject.class);
       //response handling
    }catch(IOException ex){
           System.out.println(conn.getResponseMessage()); //not working
    }
    

    当请求失败时,我想读取json正文,然而getResponseMessage只是给了我一个通用的“未授权”……那么如何检索json?

    1 回复  |  直到 9 年前
        1
  •  1
  •   Community CDub    7 年前

    你可以打电话 conn.getErrorStream() 在非200响应的情况下:

    HttpURLConnection conn = null;
    try {
        URL url = new URL(/* url */);
        conn = (HttpURLConnection)url.openConnection(); //this can give 401
        JsonReader reader = new JsonReader(new InputStreamReader(conn.getInputStream()));
    
        JsonObject response = gson.fromJson(reader, JsonObject.class);
    } catch(IOException ex) {
        JsonReader reader = new JsonReader(new InputStreamReader(conn.getErrorStream()));
        JsonObject response = gson.fromJson(reader, JsonObject.class);
    }
    

    在Stack Overflow数据库中进行粗略搜索会导致 this article 其中提到了该解决方案。