c# for循环中每循环一次创建一个文本文档并写入数据

c# for循环中每循环一次创建一个文本文档并写入数据,第1张

foreach (var 啊 in Enumerable.Range(1, 2))

{

String 保存路径 = @System.Environment.CurrentDirectory

String 保存文件名 = @保存路径 + "\\" + 啊.ToString("00000000000000") + ".txt "

if (System.IO.Directory.Exists(保存指肆路径))

{

System.IO.FileInfo 文件 = new System.IO.FileInfo(保存文件名)

if (!文件.Exists)

{

System.IO.FileStream 创建或覆盖 = System.IO.File.Create(保存文件名)

创建或覆盖.Flush()

创建或覆盖.Close()

}

System.IO.StreamWriter 写入 = new System.IO.StreamWriter(保存文件名)

//foreach (DataRow 阿 in 阿阿.Rows)

//枣逗谨写凳基入.WriteLine(string.Concat(阿.ItemArray))

写入.WriteLine(啊)

写入.Flush()

写入.Close()

}

}

在ASP NET中 文件处理的整个过程都是围绕着System IO 这个名称空间展开的 这个名称空间中具有执行文件读 写所需要的类 本文从最基本的 *** 作开始 解释在ASP NET中文件处理的概念 包括如从一个文件中读取内容 如何向一个文件中写入内容和如何删除一个文件 前面已经提到 要想在ASP NET 页面中进行文件处理 必须要有 System IO 名称空间 所以 第一步就是引入这个名称空间 <%@ Import Namespace= System IO %>下一步 就是创建一个文本文件 并将这个文本文件分配给一个流书写对象 这样就可以向文本文件中写入内容了 用以下一段代码来完成这个任务 writefile aspx<%@ Import Namespace= System IO %><%Response write( Writing the content into Text File in ASP NET<BR>) 声明流书写对象Dim strwriterobj As StreamWriter 创建文本文件 分配textfile对象strwriterobj= File CreateText( c:aspnet txt ) 写入内容strwriterobj WriteLine( Wele to wonderfull world of ASP NET Programming ) 完成樱悔 *** 作 关闭流对象strwriterobj CloseResponse write( Done with the creation of text file and writing content into it )%>这样就完成了!现在让我们继续进行下一个任务 从刚才创建的文本文件中读取内容 从文件中读取内容从文件中读取内容与向文件中写入内容大致相同 只是要注意一下下面的两件事 文件读取使用StreamReader类 当使用了Readline方法时 将要被读取的文本文件的结尾处会用一个空字符串( )来标记 现在开始编写代码从前面创建的aspnet txt 文件中读取内容 readfile aspx<%@ Import Namespace= System IO %><%Response write( Reading the content from the text file ASPNET TXT<br>) 创建流读取对象Dim streamreaderobj As StreamReader 声明变量 以存放从文件中读取的内容Dim filecont As String 打开文本文件 分配给流读乱判取对象streamreaderobj = File OpenText( c:aspnet txt ) 逐行读取文件内容Dofilecont = streamreaderobj ReadLine()Response Write( filecont &<br>)Loop Until filecont = 完成读取 *** 作后 关闭流读取对象streamreaderobj CloseResponse write( <br>Done with reading the content from the file aspnet txt )%>删除文件在ASP NET中删除文件也非常简单和直观 System IO名称空间中的 File (文件)类有一个Delete方法用来删除文件 它把文件名作为一个自变量来传递 以下代码就演示了在ASP NET中进行文件哗颂改删除的步骤 Filedelete aspx<%@ Import Namespace= System IO %><%File Delete( c:aspnet txt )Response write( The File aspnet is deleted successfully !!! )%>lishixinzhi/Article/program/ASP/201311/21860


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12210869.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存