Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I run into problem to download files from Sharepoint when there are special characters.
I use a tHttprequest component to get the files.
As long as there is no special characters, it runs smoothly.
But as soon as there are spaces or special characters, I encounter issues.
For instance I want to download a file whose name is file example.txt (With a space between file and example), it works fine if I encode it like file%20example.txt
So I wanted to use this conversion:
java.net.URLEncoder.encode(badURI, "UTF-8")
But instead of file%20example.txt, I get file+example.txt and get an error from sharepoint.
Does anyone know how I have to adjust the method java.net.URLEncoder.encode call to get the requested result ? Or may I have to use another one ?
Regards.
Eric