/// Name: Lacey Reese /// Period: 5 /// Program Name: SimpleWebInput /// File Name: SimpleWebInput.java /// Date Finished 6/6/2016 import java.net.URL; import java.util.Scanner; public class SimpleWebInput { 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); } }Picture of the output
//