///Name: Joshua Bautista ///Period: 6 ///Date: 6/4/16 import java.net.URL; import java.util.Scanner; public class SWI { public static void main(String[] args) throws Exception { URL mURL = new URL("http://llhscp-jfb.neocities.org"); Scanner webIn = new Scanner(mURL.openStream()); String one = webIn.nextLine(); String two = webIn.nextLine(); webIn.close(); System.out.println(one); System.out.println(two); } }