5. ข้อความ

The Camtasia Studio video content presented here requires JavaScript to be enabled and the latest version of the Macromedia Flash Player. If you are you using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Flash Player by downloading here.

 
รหัสที่ 5-12  ตัวอย่างการใช้ Scanner อ่านแฟ้มข้อมูล
import java.util.Scanner;
import java.io.File;
import java.io.IOException;
// โปรแกรมแสดงการใช้ Scanner ในการอ่านข้อความจากแฟ้ม 
public class ReadMe {
  public static void main(String[] args) throws IOException {
    Scanner in = new Scanner(new File("ReadMe.java"));
    while (in.hasNext()) {
      String s = in.nextLine();
      System.out.println(s);
    }
  }
}
©2009 S.Prasitjutrakul