您好,登錄后才能下訂單哦!
import java.io.File;
import java.io.FileOutputStream;
import java.io.*;
public class FileTest {
? ? public static void main(String[] args) {
? ? ? ? FileOutputStream out = null;
? ? ? ? FileOutputStream outSTr = null;
? ? ? ? BufferedOutputStream Buff = null;
? ? ? ? FileWriter fw = null;
? ? ? ? int count = 1000;//寫文件行數
? ? ? ? try {
? ? ? ? ? ? //經過測試:FileOutputStream執行耗時:17,6,10 毫秒
? ? ? ? ? ? out = new FileOutputStream(new File("C:\\Users\\lee\\Desktop\\add.txt"));
? ? ? ? ? ? long begin = System.currentTimeMillis();
? ? ? ? ? ? for (int i = 0; i < count; i++) {
? ? ? ? ? ? ? ? out.write("測試java 文件操作\r\n".getBytes());
? ? ? ? ? ? }
? ? ? ? ? ? out.close();
? ? ? ? ? ? long end = System.currentTimeMillis();
? ? ? ? ? ? System.out.println("FileOutputStream執行耗時:" + (end - begin) + " 毫秒");
? ? ? ? ? ? //經過測試:ufferedOutputStream執行耗時:1,1,1 毫秒
? ? ? ? ? ? outSTr = new FileOutputStream(new File("C:\\Users\\lee\\Desktop\\add0.txt"));
? ? ? ? ? ? Buff = new BufferedOutputStream(outSTr);
? ? ? ? ? ? long begin0 = System.currentTimeMillis();
? ? ? ? ? ? for (int i = 0; i < count; i++) {
? ? ? ? ? ? ? ? Buff.write("測試java 文件操作\r\n".getBytes());
? ? ? ? ? ? }
? ? ? ? ? ? Buff.flush();
? ? ? ? ? ? Buff.close();
? ? ? ? ? ? long end0 = System.currentTimeMillis();
? ? ? ? ? ? System.out.println("BufferedOutputStream執行耗時:" + (end0 - begin0) + " 毫秒");
? ? ? ? ? ? //經過測試:FileWriter執行耗時:3,9,5 毫秒
? ? ? ? ? ? fw = new FileWriter("C:\\Users\\lee\\Desktop\\add2.txt");
? ? ? ? ? ? long begin3 = System.currentTimeMillis();
? ? ? ? ? ? for (int i = 0; i < count; i++) {
? ? ? ? ? ? ? ? fw.write("測試java 文件操作\r\n");
? ? ? ? ? ? }
? ? ? ? ? ? fw.close();
? ? ? ? ? ? long end3 = System.currentTimeMillis();
? ? ? ? ? ? System.out.println("FileWriter執行耗時:" + (end3 - begin3) + " 毫秒");
? ? ? ? } catch (Exception e) {
? ? ? ? ? ? e.printStackTrace();
? ? ? ? } finally {
? ? ? ? ? ? try {
? ? ? ? ? ? ? ? fw.close();
? ? ? ? ? ? ? ? Buff.close();
? ? ? ? ? ? ? ? outSTr.close();
? ? ? ? ? ? ? ? out.close();
? ? ? ? ? ? } catch (Exception e) {
? ? ? ? ? ? ? ? e.printStackTrace();
? ? ? ? ? ? }
? ? ? ? }
? ? }
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。