3

我正在尝试将 cookie 保存在使用 SSL 但始终返回 NULL 的 URL 中。

private Map<String, String> cookies = new HashMap<String, String>();

    private Document get(String url) throws IOException {
            Connection connection = Jsoup.connect(url);
            for (Entry<String, String> cookie : cookies.entrySet()) {
                connection.cookie(cookie.getKey(), cookie.getValue());
            }
            Response response = connection.execute();
            cookies.putAll(response.cookies());
            return response.parse();
        }

    private void buscaJuizado(List<Movimentacao> movimentacoes) {
            try {
                Connection.Response res = Jsoup                          .connect("https://projudi.tjpi.jus.br/projudi/publico/buscas/ProcessosParte?publico=true")
  .userAgent("Mozilla/5.0 (Windows NT 6.1; rv:15.0) Gecko/20120716 Firefox/15.0a2")
  .timeout(0)
  .response();
  cookies = res.cookies();
  Document doc = get("https://projudi.tjpi.jus.br/projudi/listagens/DadosProcesso?  numeroProcesso=" + campo);
  System.out.println(doc.body());
  } catch (IOException ex) {
     Logger.getLogger(ConsultaProcessoTJPi.class.getName()).log(Level.SEVERE, null, ex);
  }
}

我尝试在第一次连接时捕获 cookie,但它们总是设置为 NULL。我认为由于安全连接(HTTPS)可能是一些 Cois 知道吗?

4

1 回答 1

1

问题不在于 HTTPS。问题或多或少是一个小错误。

要解决您的问题,您可以简单地替换.response().execute(). 像这样,

private void buscaJuizado(List<Movimentacao> movimentacoes) {
  try {
    Connection.Response res = Jsoup
      .connect("https://projudi.tjpi.jus.br/projudi/publico/buscas/ProcessosParte?publico=true")
      .userAgent("Mozilla/5.0 (Windows NT 6.1; rv:15.0) Gecko/20120716 Firefox/15.0a2")
      .timeout(0)
      .execute(); // changed fron response()
    cookies = res.cookies(); 
    Document doc = get("https://projudi.tjpi.jus.br/projudi/listagens/DadosProcesso?numeroProcesso="+campo);
    System.out.println(doc.body());
  } catch (IOException ex) {
    Logger.getLogger(ConsultaProcessoTJPi.class.getName()).log(Level.SEVERE, null, ex);
  }
}


总的来说,您必须确保首先执行请求。
调用对于在请求已经执行获取对象.response()很有用。显然,如果您没有执行请求,该对象将不会很有用。 Connection.ResponseConnection.Response

事实上,如果您尝试调用res.body()未执行的响应,您将收到以下异常指示问题。

java.lang.IllegalArgumentException:请求必须执行(使用 .execute()、.get() 或 .post() 才能获得响应正文

于 2012-09-21T23:52:01.797 回答