!7 import javax.net.ssl.HttpsURLConnection; p { // Certificate problem is now fixed (had to serve full chains) //disableCertificateValidation(); String httpsURL = "https://botcompany.de/"; URL myUrl = new URL(httpsURL); HttpsURLConnection conn = (HttpsURLConnection)myUrl.openConnection(); InputStream is = conn.getInputStream(); InputStreamReader isr = new InputStreamReader(is); BufferedReader br = new BufferedReader(isr); String inputLine; while ((inputLine = br.readLine()) != null) { System.out.println(inputLine); } br.close(); }