I try to load a Audiofile via an URL and HttpsURLConnection.I tried the solutions on the other tickets without success.Her is what I did:
System.setProperty("http.maxRedirects", "100");java.net.CookieManager cm = new java.net.CookieManager();java.net.CookieHandler.setDefault(cm);HttpsURLConnection conn = (HttpsURLConnection) new URL(audio).openConnection();conn.setFollowRedirects(false);InputStream ins = conn.getInputStream();