<form method="post" action="/l****/c*******/" id="comment-form" class="comment-form">
<p><textarea name="comment[body]" cols="40" rows="5" id="comment_body" class="check "></textarea></p>
<div class="buttons"><input type="submit" value="댓글 달기" class="button" /></div>
</form>

위의 소스는 html 소스입니다.

try{
HttpPost httppost = new HttpPost(yourUrl);
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("comment[body]","이 걸 보내려는데요"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
     
HttpClient client = new DefaultHttpClient();
ResponseHandler<String> reshandler = new BasicResponseHandler();
client.execute(httppost, reshandler);
     
httppost = new HttpPost(yourUrl);
//httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
String result = client.execute(httppost, reshandler);

위의 POST 형식으로 댓글을 보내서 웹서버에 저장시키려하는데 보내지기가 안 되네요. 
어떻게 댓글 달 수 있게 만들 수 있을까요 ㅠㅠ