码迷,mamicode.com
首页 > 其他好文 > 详细

开发编程之《日志篇》

时间:2018-06-08 19:25:04      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:www   ref   creat   logs   正式   写入文本   math   name   create   

在项目正式上线后,如果出现错误,异常,崩溃等情况

我们往往第一想到的事就是查看日志

所以日志对于一个系统的维护是非常重要的

                                                                  ????园内大神《冰麟轻武

下面就是我自己用的一个方法,感觉还行

using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace Maticsoft.Web
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        Maticsoft.BLL.lhzExcSQL lhz = new BLL.lhzExcSQL();
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                try
                {
                    DataTable dt = lhz.GetTalbe("select * from ad");
                    dt.Rows[0]["math"].ToString();
                }
                catch (Exception ex)
                {
                    WriteIn(Server.MapPath("log.txt"), DateTime.Now.ToString() + "返回结果" + ex.Message);
                }
            }
        }
        //写入日志
        public bool WriteIn(string strFilepath, string strNeirong)
        {
            bool bol = false;
            if (!File.Exists(strFilepath))//检查文件是否存在
            {
                FileStream fs = File.Create(strFilepath);
                fs.Close();
            }
            //写入文本
            StreamWriter sr = new StreamWriter(strFilepath, true, System.Text.Encoding.UTF8);
            try
            {
                sr.WriteLine(strNeirong);
                sr.Close();
                bol = true;
            }
            catch
            {
                bol = false;
            }
            return bol;
        }
    }
}

如下是效果图:

技术分享图片

不足之处还请各路大神斧正~

 

开发编程之《日志篇》

标签:www   ref   creat   logs   正式   写入文本   math   name   create   

原文地址:https://www.cnblogs.com/kudsu/p/9157103.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!