Android : Android multipart upload with image list

on Friday, September 19, 2014


There is a image list I would like to upload to the server


I am using httpmime , and here is the code:



for(File file : gs.id_img) {
builder.addPart("id_img[]", new FileBody(file));
}


But in the backend it seems can not get the post value, how to fix it? thanks


0 comments:

Post a Comment