All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
在GridView数据源为空时也显示表头_[Asp.Net教程]
PHP脚本编程中的文件系统函数库_php资料_编程技术
如何将Select查询结果保存到EXCEL中_[SQL Server教程]
经典:10个重要的PHP网络信息函数说明_php资料_编程技术
细说数据库范式_mssql学习_编程技术
PHP安全基础,注射基础经验技巧汇总篇_php资料_编程技术
轻松掌握Ajax.net系列教程八:使用AlwaysVisibleControlExtender_[Asp.Net教程]
ADO.NET向数据库中添加数据
PHP伪静态隐藏传递参数名的几种方法_[PHP教程]
PHP实例:用PHP实现多文件上载系统程序_php资料_编程技术
Reading number is top 10 pictures
自己约的炮,含泪也要打完
The money of more than 100 countries and regions8
泳装名模阿尔贝特妮写真
粉红蕾丝的美女
The little girl with long hair1
a pure sister
到南昌西站了3
Sora aoi mirror memorial classics4
Sora aoi mirror memorial classics2
你白吃了多少药
Download software ranking
linux安装大全
小黑猫大战两米大花蛇
中国结婚习俗实录
Boxer Classic video2
Eclipse 4.2.2 For Win32
Sora aoi, the nurse, uniform ,nursing assistant
Boxer's Top ten classic battle9
SQL2000 For 4IN1
Detective task-the top secret prostitution files
Boxer's Top ten classic battle5
aaa published in(发表于) 2013/12/18 7:59:03 Edit(编辑)
C#编程技巧,轻松实现对文件的操作_.net资料_编程技术

C#编程技巧,轻松实现对文件的操作_.net资料_编程技术

C#编程技巧 轻松实现对文件的操作_.net资料_编程技术-你的首页-uuhomepage.com

  和Java一样,C#提供的类库能够轻松实现对文件的操作。下面就给出代码示例,大家可以参考一下。


  //C#写入/读出文本文件
  string fileName =@"c:I.txt";
  StreamReader sr = new StreamReader(fileName); string str=sr.ReadLine (); sr.close();
  StreamWriterrw=File.CreateText(Server.MapPath(".")+"\myText.txt");
  rw.WriteLine("写入");
  rw.WriteLine("abc");
  rw.WriteLine(".NET笔记");
  rw.Flush();
  rw.Close();
  //打开文本文件
  StreamReadersr=File.OpenText(Server.MapPath(".")+"\myText.txt");
  StringBuilderoutput=newStringBuilder();
  stringrl;
  while((rl=sr.ReadLine())!=null)
  ...{
  output.Append(rl+"");
  }
  lblFile.Text=output.ToString();
  sr.Close();
  //C#追加文件
  StreamWritersw=File.AppendText(Server.MapPath(".")+"\myText.txt");
  sw.WriteLine("追逐理想");
  sw.WriteLine("kzlll");
  sw.WriteLine(".NET笔记");
  sw.Flush();
  sw.Close();
  //C#拷贝文件
  stringOrignFile,NewFile;
  OrignFile=Server.MapPath(".")+"\myText.txt";
  NewFile=Server.MapPath(".")+"\myTextCopy.txt";
  File.Copy(OrignFile,NewFile,true);
  //C#删除文件
  stringdelFile=Server.MapPath(".")+"\myTextCopy.txt";
  File.Delete(delFile);
  //C#移动文件
  stringOrignFile,NewFile;
  OrignFile=Server.MapPath(".")+"\myText.txt";
  NewFile=Server.MapPath(".")+"\myTextCopy.txt";
  File.Move(OrignFile,NewFile);
  //C#创建目录
  //创建目录c:sixAge
  DirectoryInfod=Directory.CreateDirectory("c:\sixAge");
  //d1指向c:sixAgesixAge1
  DirectoryInfod1=d.CreateSubdirectory("sixAge1");
  //d2指向c:sixAgesixAge1sixAge1_1
  DirectoryInfod2=d1.CreateSubdirectory("sixAge1_1");
  //将当前目录设为c:sixAge
  Directory.SetCurrentDirectory("c:\sixAge");
  //创建目录c:sixAgesixAge2
  Directory.CreateDirectory("sixAge2");
  //创建目录c:sixAgesixAge2sixAge2_1
  Directory.CreateDirectory("sixAge2\sixAge2_1");


  但是,在对txt文件读的操作中貌似没问题。因为代码能实现文件的读操作,但是所读txt文件包含中文的时候就以乱码显示。查了半天资料,看似复杂的问题其实很简单就能解决,稍微改动一下即可:


StreamReader sr = new StreamReader(fileName,Encoding.GetEncoding("gb2312"));





添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.