HTTP获取请求返回robots.txt

时间:2016-09-11 18:47:51

标签: java json rest

发送获取请求以尝试检索challonge括号时,我会获取robots.txt文件而不是实际的括号。如果我将相同的URL复制并粘贴到我的浏览器中,我会得到预期的JSON括号。我想知道我做错了什么以及如何使它成为以下Java方法实际返回括号而不是metaname = robots文本文件。

public String httpGett(String url,String userAgent) throws Exception{
    String USER_AGENT = userAgent;
    URL obj = new URL(url);
    HttpURLConnection con = (HttpURLConnection) obj.openConnection();

    con.setRequestMethod("GET");

    con.setRequestProperty("User-Agent", USER_AGENT);

    int responseCode = con.getResponseCode();
    System.out.println("\nSending 'GET' request to URL : " + url);
    System.out.println("Response Code : " + responseCode);

    BufferedReader in = new BufferedReader(
            new InputStreamReader(con.getInputStream()));
    String inputLine;
    StringBuffer response = new StringBuffer();

    while ((inputLine = in.readLine()) != null) {
        response.append(inputLine);
    }
    in.close();

    //System.out.println(response.toString());
    return(response.toString());
}

例如,如果我发送的网址是

https://challonge.com/api/tournaments/example.json?include_matches=1&include_participants=1&api_key=[MY API KEY]

我在我的浏览器中输入了网址: http://pastebin.com/4W4kmdJV

如果我使用我的Java方法发送get请求,我会得到: http://pastebin.com/ifYSSzu3

如何从Java方法中获取正确的括号信息?

1 个答案:

答案 0 :(得分:1)

所以我设法弄清楚我做错了什么。有点。

当我使用时: https://api.challonge.com/v1/tournaments/example.json?include_matches=1&include_participants=1&api_key=[MYAPIKEY]

而不是以前的链接,metaname = robots链接停止显示,我得到了正确的括号信息。