POSTでパラメータを配列で渡すことになりました。
(@_@)

連想配列ならピンとくるんですが、ただの配列ってなあに?
調べた結果

GETイメージだと
http:/localhost/request.php?hoge[]=a&hoge[]=b&hoge[]=c
てな感じです。

でっ Android で指定するには?

HttpPost httpPost = new HttpPost(url);

List<NameValuePair> para = new ArrayList<NameValuePair>() ;
for( String hoge : list ) {
	para.add( new BasicNameValuePair("hoge[]", hoge));
}
httpPost.setEntity(new UrlEncodedFormEntity( para, "UTF-8"));
HttpResponse response = httpclient.execute(httpPost);

Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)

© 2024 Falco Tech Blog Suffusion theme by Sayontan Sinha