Play framework WS url spaces
问题 I have a problem calling WS.url() in play framework 2.3.3 with url containing spaces. All other characters all url encoded automatically but not spaces. When i try to change all spaces to "%20", WS convert it to "%2520" because of "%" character. With spaces i've got java.net.URISyntaxException: Illegal character in query. How can i handle this ? part of the URL's query String: &input=/mnt/mp3/music/folder/01 - 23.mp3 The code looks like this: Promise<JsonNode> jsonPromise = WS.url(url)