忘れがちなのでメモ
HttpClient client = new HttpClient();
String path = "http://iret-ceo.blogspot.com/";
//引数
PostMethod method = new PostMethod(path);
NameValuePair param = new NameValuePair("hoge", "1");
method.setRequestBody(new NameValuePair[]
{param});
client.executeMethod(method);
// HTML内容取得
String htmlbody = method.getResponseBodyAsString();
method.releaseConnection();
とりあえずこれでコンテンツの取得ができる
2007年12月11日火曜日
HttpClient
Topic: 開発 Written by shouhei
登録:
コメントの投稿 (Atom)
0 comment:
コメントを投稿