Asignment: #129 Reading Text Online

Code

 /// Name: Sean Harrison
    /// Period: 7
    /// Program name: OnlineText
    /// File Name: OnlineText.html
    /// Date Finished: 6/2/2016
    
import java.net.URL;
import java.util.Scanner;

public class OnlineText {

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

        URL mURL = new URL("http://llhscp-sah.neocities.org/Intro/FileIO/128/SeveralFile.html");
        Scanner webIn = new Scanner(mURL.openStream());

        String one = webIn.nextLine();

        webIn.close();

        System.out.println(one);
    }
}
 

Picture of the output

Assignment 129