如何将多个图像发送到Web服务器

时间:2012-09-10 07:54:40

标签: android

如何将sd卡android中的多个图像发送到Web服务器?两个或更多图像?

这是我的代码

Bitmap bitmapOrg =BitmapFactory.decodeFile("/sdcard/Plant/pupuk/134681282302.jpg");
ByteArrayOutputStream bao = new ByteArrayOutputStream();
bitmapOrg.compress(Bitmap.CompressFormat.JPEG, 90, bao);
byte[] ba = bao.toByteArray();
String ba1 = Base64.encodeBytes(ba);
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("image", ba1));

我只找到了选择单张图片的方法。我无法将两个或多个图像发送到Web服务器。

感谢您的关注。抱歉我的英语不好。

欢呼声

亚历

1 个答案:

答案 0 :(得分:0)

这取决于您的服务器期望的内容。如果您发布的代码有效,您可以简单地迭代它以发送多个图像