app开发者平台在数字化时代的重要性与发展趋势解析
554
2022-08-31
c#文件流
private void btnOpenFile_Click(object sender, EventArgs e) { //OpenFileDialog 打开要使用的资源 using (OpenFileDialog ofd=new OpenFileDialog()) { if (ofd.ShowDialog() != System.Windows.Forms.DialogResult.OK) { MessageBox.Show("请选择文件!"); return; } //把文件读取出来 最好不用这种方法 // string txt= File.ReadAllText(ofd.FileName, Encoding.Default); //FileAccess 定义读写的权限 //FileMode 指定系统打开文件的方式 using (FileStream fs = new FileStream(ofd.FileName, FileMode.Open, FileAccess.Read)) { using (StreamReader sr = new StreamReader(fs)) { //从控件中一行一行读出 //EndOfStream 获取一个值 当值表示当前的流是否在流的末尾 while (!sr.EndOfStream) { string line = sr.ReadLine(); this.txtFileContent.Text += line; } } } } } ///
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~