File I/O Part 1 #129 (Are these what the old computer uses?)
Code
/// Name: Amir Salehi
/// Period: 7
/// Program Name: Summing Serveral Numbers
/// File Name:SSN.java
/// Date Finished: 5/31/2016
import java.net.URL;
import java.util.Scanner;
public class SimpleWebInput
{
public static void main(String[] args) throws Exception
{
URL mURL = new URL("http://llhscp-ass.neocities.org/Intro/Printing/7/SendLettertoYourself.html");
Scanner webIn = new Scanner(mURL.openStream());
while(webIn.hasNext())
{
String line = webIn.nextLine();
System.out.println(line);
}
webIn.close();
}
}
Picture(s) of the output