Hi Community How can I send a thumbail with percent char in Filename e.g. a%02.jpg. Percent is removed at the destination. a%02.jpg=>a02.jpg
File filename=new File("/tmp/a%02.jpg");
HttpPost post = new HttpPost(url);
MultipartEntityBuilder mpe = MultipartEntityBuilder.create();
mpe.setCharset(Charset.forName("UTF-8"));
mpe.addBinaryBody("fileData",filename,ContentType.create("image/jpeg"),filename.getName());
post.setEntity(mpe.build())
Regards,
Oliver
