I am sending a multipart request,and my file is attached like this
entity.addPart(entry.getValue().getName(), new FileBody(entry.getValue(), entry.getValue().getName(), "image/jpeg", "ISO-8859-1"));
entity is an MultipartEntityBuilder object.
I want to set content disposition also .How can I set content disposition with the file?Please help