//下面是讀寫檔案的類
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
using system.io;
namespace writeread
catch (exception)
}/*先使用filestream建立檔案,然後使用streanwrite 寫進檔案
* *
*/public static void writestreamwrite(string path, string content)
catch (exception)}/*
* 使用bianary寫檔案
* 以二進位制的形式寫檔案
*/public static void writebinarywriter(string path, string content)
catch (exception)
}#endregion
#region read from file params:path
/** 使用filestream讀取檔案return byte
*/public static byte readfile(string path)
catch (exception)}/*
* 以位元組流的方式讀檔案
* 使用streamreader讀取檔案return byte
*/public static string readstreamreader(string path)
sr.close();
file.close();
return data;
}catch (exception)}/*
* 以二進位制的方式讀檔案
* 使用binaryreader讀取檔案return byte
*/public static byte readbinaryreader(string path)
catch (exception)
}#endregion
}}
下面是測試類的主程式:
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
namespace writeread
#region test read from file
public static void testread()
public static void teststreamreader()
public static void testbinaryreader()
#endregion
#region test write class
public static void testfilestreamwrite()
public static void teststreamwriter()
public static void testbinarywriter()
#endregion
}}
c 檔案讀寫 文字讀寫
include int main else return 0 格式 intfscanf file stream,constchar format,返回值 如果成功,該函式返回成功匹配和賦值的個數。如果到達檔案末尾或發生讀錯誤,則返回 eof 引數1 file stream 檔案指標 引數2 cons...
C 檔案讀寫
原文 http www.vckbase.com document viewdoc id 1439 原作 john peregrine file i o using c 序論 我曾發表過檔案輸入輸出的文章,現在覺得有必要再寫一點。檔案 i o 在c 中比烤蛋糕簡單多了。在這篇文章裡,我會詳細解釋asc...
C 讀寫檔案
1 使用filestream讀寫檔案 檔案頭 using system using system.collections.generic using system.text using system.io 讀檔案核心 byte bydata new byte 100 char chardata ne...