Quantcast
Channel: CSDN博客推荐文章
Viewing all articles
Browse latest Browse all 35570

Asp.net读取和写入txt文件方法(实例)!

$
0
0

Asp.net读取和写入txt文件方法(实例)!

====================================================== 【程序第一行的引入命名空间文件 - 参考】


using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.IO;

====================================================== 【读取 - 参考网上的,根据需求改动了一下】

 string strfile;
        strfile = "asp.txt";
        
        string strout;
        strout = "";
        if (!File.Exists(System.Web.HttpContext.Current.Server.MapPath(strfile)))
        {
        }
        else
        {
            StreamReader sr = new StreamReader(System.Web.HttpContext.Current.Server.MapPath(strfile), System.Text.Encoding.Default);
            String input = sr.ReadToEnd();
            sr.Close();
            strout = input;
        }

        Response.Write("ssss");


====================================================== 【写入 - 参考】

System.IO.File.WriteAllText("e:\\asp_1.txt", "I LOVE YOU!wang na");  // 一定要绝对路径




作者:dxnn520 发表于2013-12-7 7:19:13 原文链接
阅读:36 评论:0 查看评论

Viewing all articles
Browse latest Browse all 35570

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>