/// Name: Holden Ganch /// Period: 7 /// Program Name: Fourty first Program /// File Name: Using.java /// Date Finished: 11/3/2015 import java.net.URL; import java.util.Scanner; public class SimpleWeb { public static void main(String[] args) throws Exception { URL mURL = new URL("http://www.google.com"); Scanner webIn = new Scanner(mURL.openStream()); String one = webIn.nextLine(); webIn.close(); System.out.println(one); } }