import java.net.*;
import java.io.*;
public class game1202{
public static void main(String[] args) throws Exception {
URL yahoo = new URL("http://download.oracle.com/javase/tutorial/networking/urls/readingURL.html");
BufferedReader in = new BufferedReader(
new InputStreamReader(
yahoo.openStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);
in.close();
}
}
最終更新:2011年02月09日 22:48