import java.net.*; import java.io.*; public class HelloWorldURL { public static void main(String[] args) { try { // URLクラスのインスタンスを生成 URL helloURL = new URL("http://www.hellohiro.com/src/HelloWorld.txt"); // 入力ストリームを生成 BufferedReader in = new BufferedReader( new InputStreamReader( helloURL.openStream())); // 一行ずつ読み込みます String line; while ((line = in.readLine()) != null) { // 表示します System.out.println(line); } // 入力ストリームを閉じます in.close(); } catch (IOException e) { e.printStackTrace(); } } }