使用Java发送带有HTTP请求的cookie

时间:2010-03-27 10:41:48

标签: java http cookies

我正在尝试通过创建一系列Http请求来获取Java客户端中的某个cookie。 看起来我从服务器获得了一个有效的cookie,但是当我用一个看似有效的cookie向fnal url发送请求时,我应该在响应中获得一些XML行,但响应是空白的,因为cookie是错误或因会话已关闭或其他我无法弄清楚的问题而无效。 服务器发出的cookie在会话结束时到期。

在我看来,cookie是有效的,因为当我在Firefox中执行相同的调用时,类似的cookie具有相同的名称,并以3个相同的字母和相同的长度开头存储在firefox中,也会在会议结束。 如果我然后向最终URL发出请求,只有这个特定的cookie存储在firefox中(删除了所有其他cookie),那么xml就可以在页面上很好地呈现。

关于我在这段代码中做错了什么的任何想法? 另一件事是,当我在这段代码中使用生成并存储在Firefox中的非常相似的cookie中的值时,最后一个请求会在HTTP响应中提供XML反馈。

// Validate
        url = new URL(URL_VALIDATE);
        conn = (HttpURLConnection) url.openConnection();
        conn.setRequestProperty("Cookie", cookie);
        conn.connect();

        String headerName = null;
        for (int i = 1; (headerName = conn.getHeaderFieldKey(i)) != null; i++) {
            if (headerName.equals("Set-Cookie")) {
                if (conn.getHeaderField(i).startsWith("JSESSIONID")) {
                    cookie = conn.getHeaderField(i).substring(0, conn.getHeaderField(i).indexOf(";")).trim();
                }
            }
        }

        // Get the XML
        url = new URL(URL_XML_TOTALS);
        conn = (HttpURLConnection) url.openConnection();
        conn.setRequestProperty("Cookie", cookie);
        conn.connect();

        // Get the response
        StringBuffer answer = new StringBuffer();
        BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
        String line;
        while ((line = reader.readLine()) != null) {
            answer.append(line);
        }
        reader.close();

        //Output the response
        System.out.println(answer.toString())

1 个答案:

答案 0 :(得分:5)

我觉得有点懒得调试你的代码,但你可能会考虑让CookieHandler做繁重的工作。这是我之前做的一个:

public class MyCookieHandler extends CookieHandler {
  private final Map<String, List<String>> cookies = 
                                            new HashMap<String, List<String>>();

  @Override public Map<String, List<String>> get(URI uri,
      Map<String, List<String>> requestHeaders) throws IOException {
    Map<String, List<String>> ret = new HashMap<String, List<String>>();
    synchronized (cookies) {
      List<String> store = cookies.get(uri.getHost());
      if (store != null) {
        store = Collections.unmodifiableList(store);
        ret.put("Cookie", store);
      }
    }
    return Collections.unmodifiableMap(ret);
  }

  @Override public void put(URI uri, Map<String, List<String>> responseHeaders)
      throws IOException {
    List<String> newCookies = responseHeaders.get("Set-Cookie");
    if (newCookies != null) {
      synchronized (cookies) {
        List<String> store = cookies.get(uri.getHost());
        if (store == null) {
          store = new ArrayList<String>();
          cookies.put(uri.getHost(), store);
        }
        store.addAll(newCookies);
      }
    }
  }
}

CookieHandler假设您的cookie处理对JVM是全局的;如果你想要每个线程的客户端会话或其他一些更复杂的事务处理,你可能最好坚持使用手动方法。