unity txt文件读取与写入_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > unity txt文件读取与写入

unity txt文件读取与写入

 2017/8/25 11:08:53  gegeWen  程序员俱乐部  我要评论(0)
  • 摘要:打开文件并写入:voidCreateOrOPenFile(stringpath,stringname,stringinfo){//路径、文件名、写入内容StreamWritersw;FileInfofi=newFileInfo(path+"//"+name);sw=fi.CreateText();//直接重新写入,如果要在原文件后面追加内容,应用fi.AppendText()sw.WriteLine(info);sw.Close();sw.Dispose();}读取文件内容
  • 标签:文件

打开文件并写入:

void CreateOrOPenFile(string path, string name, string info){          //路径、文件名、写入内容
 StreamWriter sw; 
 FileInfo fi = new FileInfo(path + "//" + name);
 sw = fi.CreateText ();        //直接重新写入,如果要在原文件后面追加内容,应用fi.AppendText()
 sw.WriteLine(info);
 sw.Close();
 sw.Dispose ();
}

读取文件内容:

void LoadFileAndIntialSpeed (string sPath, string sName){
 StreamReader sr = null;
 sr = File.OpenText (sPath + "//" + sName);

 string t_Line;

 if ((t_sLine = sr.ReadLine ()) != null) {

  //do some thing with t_sLine

 } else {
 print ("Null!");
 }

 sr.Close ();
 sr.Dispose ();
}

 

发表评论
用户名: 匿名