Assignemnt #129 and WebInput
Code
/// name: Leila Ordukhani
/// period: 6
/// program name: One Hundred and Nine Program
/// file name: WebInput.java
/// date finished: 6/2/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-lo.neocities.org/Intro/variables/15/UsingVariables.html");
Scanner webIn = new Scanner(mURL.openStream());
while(webIn.hasNext()) {
String line = webIn.nextLine();
System.out.println(line);
}
webIn.close();
}
}
Picture of the output