📜  Java中的格式化程序 out() 方法和示例

📅  最后修改于: 2022-05-13 01:55:47.742000             🧑  作者: Mango

Java中的格式化程序 out() 方法和示例

out()方法是Java.util.Formatter的内置方法,它返回格式化程序输出的目标。

语法

public Appendable out()

参数:该函数不接受任何参数。

返回值:函数返回输出的目的地。

异常:如果格式化程序在函数调用之前已关闭,则函数抛出FormatterClosedException

下面是上述函数的实现:

方案一:

// 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());
    }
}
输出:
What is your name? 
My name is Gopal Dave !

Destination: What is your name? 
My name is Gopal Dave !

方案二:

// 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);
        }
    }
}
输出:
What is your name? 
My name is Gopal Dave !
Exception is: java.util.FormatterClosedException

参考: https: Java/util/Formatter.html#out()