Source Code : Java log: Localize Logging
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Java log: Localize Logging

/*
Logging In Java with the JDK 1.4 Logging API and Apache log4j
by Samudra Gupta
Apress Copyright 2003
ISBN:1590590996
*/
import java.util.logging.*;
import java.io.*;
import java.util.ResourceBundle;
public class LocalizeLogging
{
private static Logger logger = Logger.getLogger("sam.logging");
private String rbName = null;
public LocalizeLogging(String rbName)
{
this.rbName = rbName;
}
public void logMessage()
{
logger.logrb(Level.INFO, "LocalizeLogging", "logMessage", rbName,"success");
}
public static void main(String args[]) {
//collect the name of the resource bundle
String rbName = "name";
LocalizeLogging lLogging = new LocalizeLogging(rbName);
lLogging.logMessage();
}
}
Thank with us