///Name: Conner Wygaerts
///Period: 6
///Project Name: WebInput
///File Name: WebInput.java
///Date Finished: 6/6/16
import java.net.URL;
import java.util.Scanner;
public class WebInput {
public static void main(String[] args) throws Exception {
URL mURL = new URL("http://llhscp-cpw.neocities.org/");
Scanner webIn = new Scanner(mURL.openStream());
while(webIn.hasNext()) {
String line = webIn.nextLine();
System.out.println(line);
}
webIn.close();
}
}