Assignment #129 Simple Web Input

Code

    /// Name: DeeJay Cerezo
/// Period: 7
/// Program Name: Simple
/// File Name: Simple.java
/// Date Finished: 5/26/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-dmc.neocities.org/129.txt");
        Scanner webIn = new Scanner(mURL.openStream());

        String one = webIn.nextLine();

        webIn.close();

        System.out.println(one);
    }
}



    
    

Picture of the output

Assignment