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);
        }

    }

  • 相关阅读:
    6.Spark streaming技术内幕 : Job动态生成原理与源码解析
    5.Spark Streaming流计算框架的运行流程源码分析2
    4.Spark Streaming事务处理
    2.Spark Streaming运行机制和架构
    1.Spark Streaming另类实验与 Spark Streaming本质解析
    3.spark streaming Job 架构和容错解析
    35.Spark系统运行内幕机制循环流程
    unity3d 扩展NGUI Tweener —— TweenFillAmount
    unity3d 赛车游戏——复位点检测
    unity3d CarWaypoints插件
  • 原文地址:https://www.cnblogs.com/kungfupanda/p/2605023.html
Copyright © 2011-2022 走看看