java.net.MalformedURLException: unknown protocol: htpps
at java.base/java.net.URL.<init>(URL.java:652)
at java.base/java.net.URL.<init>(URL.java:541)
at java.base/java.net.URL.<init>(URL.java:488)
at HTTPExample.main(HTTPExample.java:19)
java.net.MalformedURLException when thrown indicates that the URL is malformed i.e. either the protocol provided in the URL could not be found, spelled incorrectly or the String is not parsed correctly.
URL url = new URL("htpps://code2care.org");
HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
httpURLConnection.setRequestMethod("GET");

As you can see in the above code snippet the protocol is not correctly spelled it should be https
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!