Skip to content

Tag Archives: Java-Formatter

The close() method is a built-in method of the java.util.Formatter which closes the formatter. In case it is already closed, it will have no effect.… Read More
The out() method is a built-in method of the java.util.Formatter which returns the destination for the output by the formatter. Syntax: public Appendable out() Parameters:… Read More
The locale() method is a built-in method of the java.util.Formatter which returns a locale. This locale is set by the formatter construction. The format method… Read More
The ioException() method is a built-in method of the java.util.Formatter which returns the IOException last thrown by this formatter’s Appendable. If the destination’s append() method… Read More
The flush() method is a built-in method of the java.util.Formatter which flushes the formatter. Writing any buffered output in its destination to the underlying operating… Read More