私はapache httpclient 4.5.3を使用して別の別のWebページ(example.comなど)にPOSTリクエストを送信しています。私は、カスタム応答ハンドラを使用して応答を取り戻しています。応答ページは以下のように扱われる:Apache HTTPClientの相対URLを処理する方法
HttpClient httpclient = HttpClientBuilder.create().setRedirectStrategy(new LaxRedirectStrategy()).setDefaultCookieStore(cookieStore).build();
HttpPost httpget = new HttpPost("http://www.example.com/post.php");
...
String responseBody = httpclient.execute(httpget, responseHandler, context);
PrintWriter out = response.getWriter();
out.println(responseBody);
out.close();
ページをレンダリングするときに問題があり、このこと明白な理由のためにHTTP-404で得られた(/scripts/test.cssなど)HTMLページの相対URIスクリプトは私のtomcatには存在しません。
この問題を処理するにはどうすればよいですか?
// SB