Hi, I have piece of Java code that fetches the HTML from a website. Specifically strava.com/login (but that's not really important).
URLConnection connection = new URL("https://www.strava.com/login").openConnection(); InputStream response = connection.getInputStream(); System.out.println(convertStreamToString(response));
I get a ton of text-only HTML, is it possible to somehow view this in a browser?