如何将 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 服务器。
感谢您的关注。对不起,我的英语不好。
干杯
亚历克斯