I did this for uploading single image . But i want upload multiple image like 5 images in same key. Anyone tell me how to do it using multipart
HttpPost post = new HttpPost(SIGNUP_URL);
MultipartEntity multipartEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
ContentBody body=new FileBody(new File(obj.getBannerPath()),"image/*");
multipartEntity.addPart(KEY_BANNER, body);
multipartEntity.addPart(KEY_BUSINESS_NAME,new StringBody(obj.getBusinessName()));
multipartEntity.addPart(KEY_DESCRIPTION,new StringBody(obj.getDescription()));
multipartEntity.addPart(KEY_ADDRESS,new StringBody(obj.getAddress()));
post.setEntity(multipartEntity);
response=client.execute(post);
Try Folllowing code