android传递数组到php,使用POST android发送php数组

该博客介绍了如何使用Java的HttpClient库执行POST请求,包括如何传递参数,特别是如何构造一个二维数组并将其作为请求的一部分发送。示例代码演示了创建一个包含'id'和'stringdata'字段的基本NameValuePair,并展示了如何将一个包含多个键值对的Bundle作为二维数组传递。
摘要由CSDN通过智能技术生成

public void postData() {

// Create a new HttpClient and Post Header

HttpClient httpclient = new DefaultHttpClient();

HttpPost httppost = new HttpPost("http://www.yoursite.com/script.php");

try {

// Add your data

//you can add all the parameters your php needs in the BasicNameValuePair.

//The first parameter refers to the name in the php field for example

// $id=$_POST['id']; the second parameter is the value.

List nameValuePairs = new ArrayList(2);

nameValuePairs.add(new BasicNameValuePair("id", "12345"));

nameValuePairs.add(new BasicNameValuePair("stringdata", "AndDev is Cool!"));

httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

// Execute HTTP Post Request

HttpResponse response = httpclient.execute(httppost);

} catch (ClientProtocolException e) {

// TODO Auto-generated catch block

} catch (IOException e) {

// TODO Auto-generated catch block

}}

上面的代码将发送如下数组:

[id = 12345,stringdata = AndDev很酷!]

如果你想要一个bidimentional数组,你应该这样做

Bundle b= new Bundle();

b.putString("id", "12345");

b.putString("stringdata", "Android is Cool");

nameValuePairs.add(new BasicNameValuePair("info", b.toString()));

这将创建一个包含数组的数组:

[info=Bundle[{id=12345, stringdata=Android is Cool}]]

我希望这就是你想要的.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值