Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package io;
  2. import java.io.*;
  3.  
  4. public class FileInput {
  5.     public static void main(String[] args) throws IOException{
  6.         File file=new File("D:\\ProgramFiles\\eclipse\\xxxx\\test\\src\\io\\ConsoleInput.java");
  7.         FileReader fis=new FileReader(file);
  8.         BufferedReader br=new BufferedReader(fis);
  9.         String output=br.readLine();
  10.         while(output!=null){
  11.             System.out.println(output);
  12.             output=br.readLine();
  13.         }
  14.        
  15.     }
  16. }