Class Overview
Formatter to convert a LogRecord
into an XML string. The DTD
specified in Appendix A to the Java Logging APIs specification is used.
XMLFormatter
uses the output handler's encoding if it is specified,
otherwise the default platform encoding is used instead. UTF-8 is the
recommended encoding.
Summary
Public Constructors |
|
XMLFormatter()
Constructs a new XMLFormatter .
|
Public Methods |
String
|
format(LogRecord r)
Converts a LogRecord into an XML string.
|
String
|
getHead(Handler h)
Returns the header string for a set of log records formatted as XML
strings, using the output handler's encoding if it is defined, otherwise
using the default platform encoding.
|
String
|
getTail(Handler h)
Returns the tail string for a set of log records formatted as XML
strings.
|
[Expand]
Inherited Methods |
From class
java.util.logging.Formatter
|
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
|
final
Class<?>
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
|
Public Constructors
public
XMLFormatter
()
Constructs a new XMLFormatter
.
Public Methods
Converts a LogRecord
into an XML string.
Parameters
r
| the log record to be formatted. |
Returns
- the log record formatted as an XML string.
Returns the header string for a set of log records formatted as XML
strings, using the output handler's encoding if it is defined, otherwise
using the default platform encoding.
Parameters
h
| the output handler, may be null . |
Returns
- the header string for log records formatted as XML strings.
Returns the tail string for a set of log records formatted as XML
strings.
Parameters
h
| the output handler, may be null . |
Returns
- the tail string for log records formatted as XML strings.