Following filename works:
Following doesn't work:
-
German Volume Training - Phase 2.1.json
I even tried to create URI encoded filenames, this does not help...
I'm trying to download the file with:
URL url = new URL(uploadFile.getUrl());
URLConnection connection = url.openConnection();
connection.connect();
BufferedReader br = null;
InputStream input = new BufferedInputStream(url.openStream(), 8192);
The last line fails with a FileNotFoundException...