C#实现的基于二进制读写文件操作示例
程序员文章站
2023-12-01 12:02:16
本文实例讲述了c#实现的基于二进制读写文件操作。分享给大家供大家参考,具体如下:
using system;
using system.io;
class m...
本文实例讲述了c#实现的基于二进制读写文件操作。分享给大家供大家参考,具体如下:
using system; using system.io; class mystream { private const string file_name = "test.data"; public static void main(string[] args) { // create the new, empty data file. if (file.exists(file_name)) { console.writeline("{0} already exists!", file_name); return; } filestream fs = new filestream(file_name, filemode.createnew); // create the writer for data. binarywriter w = new binarywriter(fs); // write data to test.data. for (int i = 0; i < 11; i++) { w.write( (int) i); } w.close(); fs.close(); // create the reader for data. fs = new filestream(file_name, filemode.open, fileaccess.read); binaryreader r = new binaryreader(fs); // read data from test.data. for (int i = 0; i < 11; i++) { console.writeline(r.readint32()); } w.close(); } }
更多关于c#相关内容感兴趣的读者可查看本站专题:《c#文件操作常用技巧汇总》、《c#遍历算法与技巧总结》、《c#程序设计之线程使用技巧总结》、《c#常见控件用法教程》、《winform控件用法总结》、《c#数据结构与算法教程》及《c#面向对象程序设计入门教程》
希望本文所述对大家c#程序设计有所帮助。