Home Tutorials Log4j Use of HTMLLayout in Log4j



Use of HTMLLayout in Log4j
Posted on: September 12, 2008 at 12:00 AM
In this section we will describe you about HTMLLayout class. This layout outputs events in a HTML table.

Use of HTMLLayout in Log4j

     

In this section we will describe you about HTMLLayout class. This layout outputs events in a HTML table. Appenders using this layout should have their encoding set to UTF-8 or UTF-16, otherwise events containing non ASCII characters could result in corrupted log files. 

The HTMLLayout outputs events in a fixed format table. Each row of the table corresponds to an event while five columns: Time, Thread, Level, Logger Category and Message correspond to member fields of the logging event.

In this example we have used FileAppender for appending output into the HTML file.

Here is the example code of HTMLLayout in Log4j :

import org.apache.log4j.*;

public class HTMLLayoutExample {
  static Logger logger = Logger.getLogger("HTMLLayoutExample.class");
  public static void main(String[] args)throws Exception {
  FileAppender fileappender = 
  new 
FileAppender(new HTMLLayout(),"HTMLFile.html");
  logger.addAppender(fileappender);
  logger.info("Welcome");
  logger.info("to");
  logger.info("Rose India");
  logger.info("-----------");
  }
}

To run this example code follow these steps :

  1. Create and Save HTMLLayoutExample.java
  2. Compile and execute HTMLLayoutExample

You will have an HTMLFile.html file as output with the following representation:

Output:

Download Source Code

     

Related Tags for Use of HTMLLayout in Log4j:
htmlceventsfileclassfilestableencodinglayoututf-8eventiooutputcharasciiusingappendthislogaicodingsetappcharactertabcharacterscteutf-16toinildcisheilcorruptdessectionputwiseulresultpeinnomlutfasmntoutclesrupendappenderpenppdescribessurachtmisirhallaractcodtfwisscrssrithshoavababl6apoutputsndononon


More Tutorials from this section

Ask Questions?    Discuss: Use of HTMLLayout in Log4j  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.