zoukankan      html  css  js  c++  java
  • 自己写的java日志类和方法

    import java.io.*;
    import java.text.SimpleDateFormat;
    import java.util.*;
    import java.util.logging.Logger;

    public class AndyLogger
    {
        //The defaulted root path of SSLVPN installation
        private static String rootPath = "C:\\temp2";

        //variable for creating new line
        private final static String enter = System.getProperty("line.separator");

        private static SimpleDateFormat sdf =
            new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");

        public static synchronized void log(String fileName, String logMessage)
        {
            try
            {
                File folder = new File(rootPath);
                if(!folder.exists())
                {
                 folder.mkdir();
                }
                File file = new File(rootPath + "\\" + fileName + ".log");
                if(!file.exists())
                {
                 file.createNewFile();
                }
                BufferedReader in = new BufferedReader(new FileReader(file));
                String str = "";
                String strToal = "";

                while ((str = in.readLine()) != null)
                {
                    strToal += (str + enter);
                }    
                strToal = strToal + (sdf.format(new Date()) + " " + logMessage + enter);
                in.close();
                BufferedWriter out = new BufferedWriter(new FileWriter(file));
                out.write(strToal);
                out.close();

            }
            catch (Exception e)
            {
                e.printStackTrace();
            }
        }
       
       
        public static synchronized void log(String fileName, String[] logMessages)
        {
            try
            {
                File folder = new File(rootPath);
                if(!folder.exists())
                {
                 folder.mkdir();
                }
                File file = new File(rootPath + "\\" + fileName + ".log");
                if(!file.exists())
                {
                 file.createNewFile();
                }
                BufferedReader in = new BufferedReader(new FileReader(file));
                String str = "";
                String strToal = "";

                while ((str = in.readLine()) != null)
                {
                    strToal += (str + enter);
                }
                for (int i=0; i < logMessages.length ; i++)
                {
                   String logMessage = logMessages[i];
                   strToal = strToal + (sdf.format(new Date()) + " " + logMessage + enter);
                }
                in.close();
                BufferedWriter out = new BufferedWriter(new FileWriter(file));
                out.write(strToal);
                out.close();

            }
            catch (Exception e)
            {
                e.printStackTrace();
            }
        }
        public static void main(String args[])
        {
         AndyLogger.log("bug223", "timeisjjja");
         String[] logMessages = {"111","222","333"};
         AndyLogger.log("bug223", logMessages);
        }

    }

  • 相关阅读:
    看美剧学英语 | Jeff Winger's speech in Community
    学习笔记 | Coursera
    学习笔记 | Coursera
    Python: How to reverse a list in python
    公司接口流程
    使用Supervisor管理Django应用进程
    orm中 如何模糊匹配某一年的用户和某一事时间段的用户
    Linux如何查看进程是否存活
    项目中有 xxxx 不能被json序列化
    关于项目经验
  • 原文地址:https://www.cnblogs.com/kungfupanda/p/2605023.html
Copyright © 2011-2022 走看看