Assignemnt #129

Code

/// Name: Ryan Volko
/// Period: 7
/// Program Name: Simple
/// File Name: Simple.java
/// Date Finished:3/31/2016
import java.net.URL;
import java.util.Scanner;

public class Simple {

    public static void main(String[] args) throws Exception {

        URL mURL = new URL("http://llhscp-rmv.neocities.org");
        Scanner webIn = new Scanner(mURL.openStream());

        while (webIn.hasNext()) {
            
        String one = webIn.nextLine();
        
        
 

        System.out.println(one);
 }
    }
}
    

Picture of the output

Assignment 129