1 io
可以分為 位元組流 字元流
例子 位元組流
讀乙個寫乙個
//得到檔案
file file = new file("d:/test.txt");
try
out.flush();
in.close();
out.close();
} catch (filenotfoundexception e) catch (ioexception e)
}2 先把資料讀出來在寫入
//得到檔案
file file = new file("d:/test.txt");
try
out.flush();
in.close();
out.close();
} catch (filenotfoundexception e) catch (ioexception e)
}字元流
//字元流
file file = new file("d:/test.txt");
try
w.flush();
re.close();
w.close();
} catch (filenotfoundexception e) catch (ioexception e)
}2 //字元流 儲存到陣列裡
file file = new file("d:/test.txt");
try
wr.flush();
re.close();
wr.close();
} catch (filenotfoundexception e) catch (ioexception e)
}4 . 快取流
//快取流
file file = new file("d:/test.txt");
inputstream in;
try
bfo.flush();
bf.close();
bfo.close();
} catch (filenotfoundexception e) catch (ioexception e)
}快取流的使用理解
先把一定大小的資料儲存到乙個小桶裡面 read()的時候會在裡面拿到 !減少了i/o ,否則去讀取新的資料到緩衝區(通常比請求的資料要多),
IO的基本操作
public void readfile string fromfilename,string tofilename os.close is.close catch ioexception e catch filenotfoundexception e finally catch ioexcepti...
linux 基本io操作
linux基礎程式設計 檔案操作open,lseek,read,write,close linux上面對檔案的操作可以分為兩種 1.linux系統提供的api 2.c標準的檔案操作函式。前者依賴於linux系統,後者是標準的c檔案操作函式與作業系統無關。檔案操作方式主要是開啟,讀寫和關閉這三種。在l...
基本的I O操作
功能 開啟指定的檔案,以指定的許可權開啟 你使用一下函式需要包含的標頭檔案 include include include int open const char pathname,int flags int open const char pathname,int flags,mode t mod...