程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> java中IO流相關知識點,javaio流知識點

java中IO流相關知識點,javaio流知識點

編輯:JAVA綜合教程

java中IO流相關知識點,javaio流知識點


(一) 下邊使用outputStream字節輸出流進行寫操作

package zdbIO;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;

public class OutputStreamDemo1 {

    /**
     * @throws IOException
     * @throws IOException
     *
     */
    public static void main(String[] args) throws IOException{
        
        /**
         * 使用IO流的具體步驟:
         *             1.使用file找到要操作的文件
         *             2.(使用字節流或字符流的子類來實例化inputStream、outStream、reader、writer)
         *             3.進行讀寫操作
         *             4.關閉流,除BufferedReader例外
         */
        
        File file = new File("f:"+File.separator+"zdb1.txt");//使用file找到要操作的文件
        OutputStream out = null;
        out = new FileOutputStream(file,true);//使用OutputStream的子類進行實例化
        String str = "XXX的十年人生規劃,一定要有個計劃這樣你的人生才會有明確的方向 不至於迷失。";//要輸出的信息
        byte b[] = str.getBytes();//將str變為byte數組
        out.write(b);//寫入數據
        out.close();//關閉流
        
    }
    
}

(二)下邊使用inputStream字節流進行讀操作的第一種方法:


package zdbIO;

import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;

/**
 * 通過inputStream字節流來進行讀操作
 *
 */
public class InputStreamDemo {
    public static void main(String[] args) throws Exception {
        //注意此文件必須存在否則會發生java.io.FileNotFoundException異常
        //File.separator表示分隔符,其中在Windows中表示\,在unix表示/,這樣可以跨平台
        File file = new File("f:"+File.separator+"zdb1.txt");
        InputStream input = null;
        input = new FileInputStream(file);
        byte b[] = new byte[1024];//開辟一塊內存用來存儲讀取的內容
        int len = input.read(b);//將文件讀到字符數組中
        //其中new String(byte[]bytes,int offset,int length),
        //表示將創建一個字符串,從offset為開始,長度為length
        System.out.println(new String(b,0,len));
        input.close();
        
    }

}


/**
     * 這種方法中開辟空間的大小受到限制,因此可以根據文件的大小來開辟空間的大小,
     * 即可以使用byte b[] = new byte[(int)file.length()],來創建開辟的空間,
     * 然後可以通過read()方法來一個個讀取。
     *
     */

(二)下邊使用inputStream字節流進行讀操作的第二種方法

package zdbIO;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;

public class InputStreamDemo1 {
    public static void main(String[] args) throws Exception {
        File file = new File("f:"+File.separator+"zdb1.txt");
        InputStream input = null;
        input = new FileInputStream(file);
        byte b[] = new byte[(int)file.length()];
        for(int i=0;i<b.length;i++){
            b[i] = (byte)input.read();
        }
        System.out.println(new String(b));    
        input.close();
    }

}


(三)下邊使用Reader字節流進行讀操作的第一種方法:
package zdbIO;

import java.io.File;

import java.io.FileReader;
import java.io.Reader;

public class ReaderDemo {
    public static void main(String[] args) throws Exception {
        File file = new File("f:"+File.separator+"zdb1.txt");
        Reader in = null;
        in = new FileReader(file);
        char c[] = new char[1024];
        int len = in.read(c);
        System.out.println(new String(c,0,len));
        in.close();
    }

}

(三)下邊使用Reader字節流進行讀操作的第二種方法:
package zdbIO;

import java.io.File;

import java.io.FileReader;
import java.io.Reader;

public class ReaderDemo {
    public static void main(String[] args) throws Exception {
        File file = new File("f:"+File.separator+"zdb1.txt");
        Reader in = null;
        in = new FileReader(file);
        char c[] = new char[1024];
        int len = in.read(c);
        System.out.println(new String(c,0,len));
        in.close();
    }

}
(四)下邊使用Writer字節流進行寫操作的:
package zdbIO;

import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.Writer;

public class WriterDemo {
    /**
     * 可以通過字符流writer來進行寫操作
     * @throws IOException
     *
     */
    
    public static void main(String[] args) throws IOException {
        File file = new File("f:"+File.separator+"zdb1.txt");
        Writer writer = null;
        writer = new FileWriter(file, true);
        String str = "你今天好好學習了嗎?你今天進步了嗎學會每天一番思";
        writer.write(str);
        writer.close();

    }

}
(五) 字符流和字節流的區別:
    1.字符流中寫操作Writer中,操作完成後需要關閉流或者刷新,否則寫入不成功。
    2.字節流直接與文件進行交互的,不需要使用緩存;而字符流是通過緩存與文件進行交互的;
    3.在傳輸和硬盤上保存的內容都是字節形式,所以字節形式操作較多;而操作文件的時候使用字符流較多;
















































 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved