El método out() es un método integrado de java.util.Formatter que devuelve el destino de la salida del formateador.
Sintaxis :
public Appendable out()
Parámetros : la función no acepta ningún parámetro.
Valor devuelto : la función devuelve el destino de la salida.
Excepciones : la función lanza FormatterClosedException si el formateador se ha cerrado antes de la llamada a la función.
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); // Prints the destination of the output System.out.println("\nDestination: " + frmt.out()); } }
Producción:
What is your name? My name is Gopal Dave ! Destination: What is your name? My name is Gopal Dave !
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) { try { // 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); // Formatter closed frmt.close(); // Prints the destination of the output System.out.println("\nDestination: " + frmt.out()); } catch (Exception e) { System.out.println("Exception is: " + e); } } }
Producción:
What is your name? My name is Gopal Dave ! Exception is: java.util.FormatterClosedException
Referencia: https://docs.oracle.com/javase/10/docs/api/java/util/Formatter.html#out()