You can use HttpURLConnection .
But using it directly is redundant if you just want to load the specified URL. This guide shows how to open a URL.
It basically boils down to:
URL url = new URL("http://www.xyz.com/node1"); URLConnection conn = url.openConnection(); conn.connect();
source share