Wed Feb 06, 2013 10:35 pm
import java.net.*;
import java.io.*;
public class URLReader {
public static void main(String[] args) throws Exception {
URL codemiles= new URL("http://www.codemiles.com/");
DataInputStream in = new DataInputStream(
codemiles.openStream());
String inputLine;
while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);
in.close();
}
}
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.