Source Code : Log HTML Table Formatter
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
Log HTML Table Formatter
import java.util.logging.Handler;
import java.util.logging.LogRecord;
public class HTMLTableFormatter extends java.util.logging.Formatter {
public String format(LogRecord record) {
return (" <tr><td>" + record.getMillis() + "</td><td>"
+ record.getMessage() + "</td></tr>
");
}
public String getHead(Handler h) {
return ("<table border>
"
+ "<tr><th>Time</th><th>Log Message</th></tr>
");
}
public String getTail(Handler h) {
return ("</table>
");
}
}
Thank with us