日前,遇到一个问题,需要手动把日志写文件然后进行查看,花了半天的时间搞出下面这么一个类。
大致的思路就是先在一个指定的目录下创建一份文件,然后用Java IO写文件,然后再用单例模式提供类的实例,话不多说,代码也比较简单,先来围观一下:
package com.zsmart.hunan.test;
import java.io.*;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* @param
* @author wu.lin
* @description
* @create 2016年10月23日 15:22
* @throws
*/
public class UserLogInfo {
private static UserLogInfo mLogInfo = null;
static String strLogFileName = "";
private UserLogInfo() {
createFile();
}
public static boolean exists(String pathFileName) {
File mFile = new File(pathFileName);
return mFile.exists();
}
public static String createFile() {
try {
if (strLogFileName == null || strLogFileName.length() < 1 || !exists(strLogFileName)) {
strLogFileName = System.getProperty("user.dir");
System.out.println(System.getProperty("user.dir"));
//E:\\work_src\\mmscomm\\MMSComm\\logs\\mms5.log
if (strLogFileName == null) {
strLogFileName = "E:\\work_src\\mmscomm\\MMSComm\\logs\\Btp_Tomcat_7.0.25";
} else {
strLogFileName += "\\mmscomm\\MMSComm\\logs\\Btp_Tomcat_7.0.25";
}
}
File dirFile = new File(strLogFileName);
if(!dirFile.exists()){
dirFile.mkdirs();
}
System.out.println("logFileName=[" + strLogFileName + "]");
strLogFileName += "/mms10000001.log";
File logFile = new File(dirFile, "mms10000001.log");
if(!logFile.exists()){
logFile.createNewFile();
}
} catch (Exception e) {
e.printStackTrace();
}
return strLogFileName;
}
/**
* 向文件中写入内容
* @param filepath 文件路径与名称
* @param newstr 写入的内容
* @return
* @throws IOException
*/
public static boolean writeFileContent(String filepath,String newstr){
Boolean bool = false;
String filein = newstr+"\r\n";//新写入的行,换行
String temp = "";
FileInputStream fis = null;
InputStreamReader isr = null;
BufferedReader br = null;
FileOutputStream fos = null;
PrintWriter pw = null;
try {
File file = new File(filepath);//文件路径(包括文件名称)
//将文件读入输入流
fis = new FileInputStream(file);
isr = new InputStreamReader(fis);
br = new BufferedReader(isr);
StringBuffer buffer = new StringBuffer();
//文件原有内容
for(int i=0;(temp =br.readLine())!=null;i++){
buffer.append(temp);
// 行与行之间的分隔符 相当于“\n”
buffer = buffer.append(System.getProperty("line.separator"));
}
buffer.append(filein);
fos = new FileOutputStream(file);
pw = new PrintWriter(fos);
pw.write(buffer.toString().toCharArray());
pw.flush();
bool = true;
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}finally {
//不要忘记关闭
try {
if (pw != null) {
pw.close();
}
if (fos != null) {
fos.close();
}
if (br != null) {
br.close();
}
if (isr != null) {
isr.close();
}
if (fis != null) {
fis.close();
}
} catch(IOException ex) {
ex.printStackTrace();
}
}
return bool;
}
/**
* 启动实例
* @return
*/
public static synchronized UserLogInfo instance() {
if (mLogInfo == null) {
mLogInfo = new UserLogInfo();
}
return mLogInfo;
}
public void info(String info) {
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
mLogInfo.writeFileContent(strLogFileName, df.format(new Date()) + "--:" + info);
}
}
下面是测试的代码:
package com.zsmart.hunan.test;
/**
* @param
* @author wu.lin
* @description
* @create 2016年10月25日 20:23
* @throws
*/
public class Test {
public static void main(String[] args) {
log("test userinfo log!");
log("-------------test-----------------");
}
public static void log(String info) {
com.zsmart.hunan.test.UserLogInfo.instance().info(info);
}
}
通过这样一个类,我们就达到了向自定义文件中写入日志的目的。效果如下图:
虽然比起我们的log4j、logbak什么的工具要弱很多,但是也能够满足我们的简单的需求啦。
每天进步一点点,加油!