1

我在 Eclipse 中创建了一个简单的 Java 项目(不是动态 Web 项目)。

我希望能够访问返回一些 JSON 值的 Web URL。

我可以使用 HttpClient 和所有这些访问 URL,但我无法验证我的会话,这是我访问 JSON 数据所必需的。如果您未通过身份验证,则 URL 会将您重定向到登录页面。

我尝试了多种验证会话的方法,但似乎都不起作用——我总是得到登录页面的 HTML 数据而不是 JSON。

我还注意到 JSESSION ID 被传递到请求标头中,但我似乎无法弄清楚如何创建 JSESSION ID 以及如何将其传递到 GET 请求中。

所以基本上,我可以通过两种方式解决这个问题:

  1. 验证我的会话,然后访问 URL 以获取 JSON
  2. 创建一个 JSESSION ID 并将其传递给 GET 请求以获取 JSON

有人知道该怎么做吗?

最终,我想使用从 JSON 收集的数据进行一些 Selenium 测试,所以我需要在动态 Web 项目(在 Eclipse 中)中完成所有这些工作,还是可以在常规 Java 项目中完成所有这些工作?


尝试 1

URL url = new URL(_url);

InputStream ins = url.openConnection().getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(ins));
StringBuilder builder = new StringBuilder();

for (String line = null; (line = reader.readLine()) != null;) {
    builder.append(line).append("\n");
}

System.out.println("RESPONSE:\n\n" + builder);

JSONTokener tokener = new JSONTokener(builder.toString());
JSONArray finalResult = new JSONArray(tokener);

System.out.println("JSON:\n\n" + finalResult.toString());

尝试 1 结果

我最终打印出登录页面的 HTML 代码,然后收到以下错误消息,因为页面上没有 JSON:

Exception in thread "main" org.json.JSONException: A JSONArray text must start with '[' at character 1

尝试 2

我还尝试了Oracle 的 Http Authentication页面中的代码:

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.Authenticator;
import java.net.PasswordAuthentication;
import java.net.URL;

public class RunHttpSpnego {

    static final String kuser = "username"; // your account name
    static final String kpass = "password"; // your password for the account

    static class MyAuthenticator extends Authenticator {
        public PasswordAuthentication getPasswordAuthentication() {
            // I haven't checked getRequestingScheme() here, since for NTLM
            // and Negotiate, the usrname and password are all the same.
            System.err.println("Feeding username and password for " + getRequestingScheme());
            return (new PasswordAuthentication(kuser, kpass.toCharArray()));
        }
    }

    public static void main(String[] args) throws Exception {
        Authenticator.setDefault(new MyAuthenticator());
        URL url = new URL(args[0]);
        InputStream ins = url.openConnection().getInputStream();
        BufferedReader reader = new BufferedReader(new InputStreamReader(ins));
        String str;
        while((str = reader.readLine()) != null)
            System.out.println(str);
    }
}
4

1 回答 1

1

当您登录时,服务器会在您的浏览器中使用响应中的 Set-Cookie 标头将会话 ID 设置为 cookie。

Set-Cookie: name=value
Set-Cookie: name2=value2; Expires=Wed, 09-Jun-2021 10:18:14 GMT

然后,浏览器在请求标头中将这个 cookie 与每个后续请求一起提供给服务器。

Cookie: name=value; name2=value2

HttpClient 可以为你做这个管理,就像浏览器一样。见http://hc.apache.org/httpclient-3.x/cookies.html 那么你首先告诉 HttpClient 浏览登录页面,它会获取你的 cookie 并在随后的请求中发送它沿着。

您也可以自行处理并手动设置 cookie。在 HttpClient 3 中,这看起来像这样:

HttpMethod method = new GetMethod();
method.getParams().setCookiePolicy(CookiePolicy.IGNORE_COOKIES);
method.setRequestHeader("Cookie", "special-cookie=value");

如何在 HttpClient 4 中设置 cookie 可以在这里找到:Apache HttpClient 4.0.3 - how do I set cookie with sessionID for POST request

或者您可以将其降低一点并添加完整的标题。

HttpGet httpget = new HttpGet(url); 
httpget.addHeader("Cookie", "JSESSIONID=...");
于 2013-01-16T20:19:57.040 回答