El método ioException() es un método integrado de java.util.Formatter que devuelve la última IOException lanzada por el Appendable de este formateador. Si el método append() del destino nunca lanza IOException, entonces este método siempre devolverá un valor nulo.
Sintaxis :
public IOException ioException()
Parámetros : la función no acepta ningún parámetro.
Valor devuelto : la función devuelve la IOException que fue lanzada por última vez por el complemento del formateador.
A continuación se muestra la implementación de la función anterior:
Programa 1:
// Java program to implement // the above function import java.util.Formatter; import java.util.Locale; public class Main { public static void main(String[] args) { // Get the string Buffer StringBuffer buffer = new StringBuffer(); // Object creation Formatter frmt = new Formatter(buffer, Locale.CANADA); // Format a new string String name = "My name is Gopal Dave"; frmt.format("What is your name? \n%s !", name); // Print the Formatted string System.out.println(frmt); // flushes the formatter frmt.flush(); System.out.println("Flushed"); } }
Producción:
What is your name? My name is Gopal Dave ! Flushed
Programa 2:
// Java program to implement // the above function import java.util.Formatter; import java.util.Locale; public class Main { public static void main(String[] args) { // Get the string Buffer StringBuffer buffer = new StringBuffer(); // Object creation Formatter frmt = new Formatter(buffer, Locale.CANADA); // Format a new string String name = "My name is Gopal Dave"; frmt.format("What is your name? \n%s !", name); System.out.println("The last exception thrown: " + frmt.ioException()); // Closes the format frmt.close(); } }
Producción:
The last exception thrown: null
Producción:
The last exception thrown: null
Referencia: https://docs.oracle.com/javase/10/docs/api/java/util/Formatter.html#flush()