zoukankan      html  css  js  c++  java
  • c# 写txt文件

    public static void WriteErrorLogDataInteraction(string sLog, string titleLog)
            {
                try
                {
                    string logPath = ConfigurationSettings.AppSettings["LogPath"]; //通过配置文件记录错误日志位置
                    if (string.IsNullOrEmpty(logPath))
                    {
                        logPath = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;//配置文件安装目录
                    }
                    DateTime dt = DateTime.Now;
                    string logfile = new StringBuilder(logPath).Append(DateTime.Now.ToString("yyyy-MM")).Append(".txt").ToString();
                    if (!System.IO.Directory.Exists(System.IO.Path.GetDirectoryName(logfile)))
                    {
                        System.IO.Directory.CreateDirectory(System.IO.Path.GetDirectoryName(logfile));
                    }
                    if (!File.Exists(logfile))
                    {
                        FileStream fs = System.IO.File.Create(logfile);
                        fs.Close();
                    }
                    using (StreamWriter sw = new StreamWriter(logfile, true))
                    {
                        sw.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + ":");
                        sw.WriteLine("Title: " + titleLog);
                        sw.WriteLine("Message:" + sLog);
                        sw.WriteLine();
                        sw.Close();
                    }
                }
                catch
                { }
            }

    方式二、

    string a = rea.ToString();


            StreamWriter bb = new StreamWriter("c:\\bbb.xml");


            bb.Write(a);


            bb.Close();

  • 相关阅读:
    面试题 33 把数组排成最小的数
    面试题32 1的数目
    面试题29 数组中出现次数超过一半的数字
    LeetCode_Combination Sum II
    LeetCode_Combination Sum
    面试题27 二叉搜索树转换为双向链表
    面试题26 复杂链表的复制
    面试题24 二叉搜索树的后序遍历序列
    LeetCode_Binary Tree Inorder Traversal
    省选模拟57 题解
  • 原文地址:https://www.cnblogs.com/honghong75042/p/5773957.html
Copyright © 2011-2022 走看看