2010-09-26 EclipseプラグインでHttpClientを使う なぜか最近Eclipseのプラグイン開発がマイブーム。プラグインの中からHttpClientを使いたいので、apache commonsをのぞいたら、最近はOSGiバンドル版ってのがあるんですね。このOSGiをダウンロード&解凍後に、Eclipse Pluginに放り込んで、PluginのRequired Plug-insにこのHttpClientを追加する。あとは、適当な感じで。 String str = "Action 1 executed"; try { HttpClient client = new HttpClient(); HttpMethod method = new GetMethod("http://www.google.co.jp/"); int ret = client.executeMethod(method); str = method.getResponseBodyAsString(); } catch (HttpException e) { } catch (IOException e) { } showMessage(str);