首页 > 编程 > .NET > 正文

ASP.NET对txt文件相关操作(读取、写入、保存)

2024-07-10 13:29:24
字体:
来源:转载
供稿:网友

这篇文章主要介绍了ASP.NETtxt文件相关操作,包括读取、写入、保存,需要的朋友可以参考下

ASP.NET读取txt文件(记事本)内容:

 

 
  1. using System;  
  2. using System.Collections;  
  3. using System.Configuration;  
  4. using System.Data;  
  5. using System.Web;  
  6. using System.Web.Security;  
  7. using System.Web.UI;  
  8. using System.Web.UI.HtmlControls;  
  9. using System.Web.UI.WebControls;  
  10. using System.Web.UI.WebControls.WebParts;  
  11. using System.IO;  
  12. //获取txt文件流  
  13. namespace test  
  14. {  
  15. public partial class Text : System.Web.UI.Page  
  16. {  
  17. protected void Page_Load(object sender, EventArgs e)  
  18. {  
  19. Response.Write(GetInterIDList("asp.txt"));  
  20. }  
  21. //读取txt文件的内容  
  22. public string GetInterIDList(string strfile)  
  23. {  
  24. string strout;  
  25. strout = "";  
  26. if (!File.Exists(System.Web.HttpContext.Current.Server.MapPath(strfile)))  
  27. {  
  28. }  
  29. else 
  30. {  
  31. StreamReader sr = new StreamReader(System.Web.HttpContext.Current.Server.MapPath(strfile), System.Text.Encoding.Default);  
  32. String input = sr.ReadToEnd();  
  33. sr.Close();  
  34. strout = input;  
  35. }  
  36. return strout;  
  37. }  
  38. }  

读取txt文件内容就是获取文件流,记得要引用using System.IO;。

ASP.NET写入txt文件(记事本):

 

 
  1. string txtPath = Server.MapPath("~//Public//AttInfo//") + "Test.txt";  
  2. StreamWriter sw = new StreamWriter(txtPath, false, System.Text.Encoding.Default);  
  3. sw.WriteLine("Hello World");  
  4. sw.WriteLine(""); //输出空行  
  5. sw.WriteLine("ASP.NET网络编程 - 武林网!");  
  6. sw.Close(); 

注意:如果写入记事本不需换行,可以使用 Write,需要换行的,可以使用 WriteLine。

ASP.NET保存txt文件(记事本):

 

 
  1. public void ProcessRequest(HttpContext context) 
  2.  
  3. context.Response.Clear(); 
  4. context.Response.Buffer = true
  5. //Server.UrlEncode 防止保存的文件名乱码 
  6. context.Response.AddHeader("Content-Disposition""attachment;filename=" + context.Server.UrlEncode("消费明细" + string.Format("{0:yyyyMMddHHmmss}", System.DateTime.Now) + ".txt"));  
  7. context.Response.ContentType = "text/plain";  
  8. string message = "Hello World"
  9. //如果导出的文件要换行,用Environment.NewLine 
  10. message += "Hello World" + Environment.NewLine; 
  11. context.Response.Write(message); 
  12. //停止页面的执行  
  13. context.Response.End();  

注意3点:

1.保存文件名乱码问题:用Server.UrlEncode编码

2.txt文件中的换行问题:Environment.NewLine

3.调用可以用js:window.location.href="download.ashx" 或window.open("download.ashx")

以上就是关于txt文件的相关操作,如果我的文章对你有帮助,就点个赞吧。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表