Assignemnt #129 and Simple Web Input
Code
/// Name: Marco Correa
/// Period: 5
/// Program Name: Simple Web Input
/// File Name: Simple Web Input.java
/// Date Finished: 5/25/2016
import java.net.URL;
import java.util.Scanner;
public class SimpleWebInput
{
public static void main(String[] args) throws Exception
{
URL mcool = new URL("http://llhscp-mec.neocities.org/intro/while+loops/60/prog60.html");
Scanner webIn = new Scanner( mcool.openStream() );
while ( webIn.hasNext() )
{
String one = webIn.nextLine();
System.out.println( one );
}
webIn.close();
}
}
Picture of the output