HTTP コンポーネント HTTPClient 4 プロジェクトを使用して SSL で HTTP GET メソッドを処理する最良の方法は何ですか? 認証情報をパラメータ化する最良の方法は何ですか? プロパティファイル? メソッドをデーモン サービスにリロードしますか?
HttpClient httpClient = new DefaultHttpClient();
String url = "https://xxx.190.2.45/index.jsp";
HttpGet get = new HttpGet(url);
try {
//TODO
HTTPHelper.addSSLSupport(httpClient);
HttpResponse response = httpClient.execute(get);
BasicResponseHandler responseHandler = new BasicResponseHandler();
String responseString = responseHandler.handleResponse(response);
} catch (ClientProtocolException e) {
throw new RuntimeException(e);
} catch (IOException e) {
throw new RuntimeException(e);
}