1. 程式人生 > >IO流讀取本地的檔案,並且在控制檯打印出來

IO流讀取本地的檔案,並且在控制檯打印出來

  • 第一步:我們在D盤根目錄下寫個HelloWorld這個入門程式,你可能還沒有刪除。那我們就拿這個java檔案來試試

  • 第二步:開啟你習慣使用的idea工具,複製以下程式碼,注意:路徑,包名,還有類名
  • package javaexercises;
    
    import java.io.BufferedReader;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    
    public class demo002 {
    	public static void main(String[] args) {
    		InputStream inputStream = null;
    		InputStreamReader fileInputStream = null;
    		BufferedReader br = null;
    		try {
    			inputStream = new FileInputStream("D:/hello.java");
    			fileInputStream = new InputStreamReader(inputStream);
    			br = new BufferedReader(fileInputStream);
    			String str = null;
    			try {
    				while ((str = br.readLine()) != null) {
    					System.out.println(str);
    				}
    			} catch (IOException e) {
    				e.printStackTrace();
    			}
    		} catch (FileNotFoundException e) {
    			e.printStackTrace();
    		} finally {
    			try {
    				br.close();
    				fileInputStream.close();
    				inputStream.close();
    			} catch (IOException e) {
    				e.printStackTrace();
    			}
    		}
    	}
    }
    

    第三步:點選執行

  • 第四部:eclipse的控制檯效果如下圖

注意:我的hello.java檔案的內容是九九乘法口訣的程式碼了,這個不用管,老手勿噴,新手注意理解看