Java Formatter toString() 方法



描述

java Formatter toString() 方法返回对输出目标调用 toString() 的结果。

声明

以下是java.util.Formatter.toString() 方法的声明

public String toString()

参数

返回值

此方法返回对输出目标调用 toString() 的结果。

异常

FormatterClosedException − 如果此格式化程序已通过调用其 close() 方法关闭

美国地区设置的 Formatter 对象的字符串表示示例

以下示例演示了如何使用 Java Formatter out() 方法打印格式化程序的目标。我们创建了一个带有 StringBuffer 和美国地区设置的 formatter 对象。Formatter 用于使用 format() 方法打印字符串。然后使用 toString() 方法打印其内容。

package com.tutorialspoint;

import java.util.Formatter;
import java.util.Locale;

public class FormatterDemo {
   public static void main(String[] args) {

      // create a new formatter
      StringBuffer buffer = new StringBuffer();
      Formatter formatter = new Formatter(buffer, Locale.US);

      // format a new string
      String name = "World";
      formatter.format("Hello %s !", name);

      // print the formatted string with default locale
      System.out.println("" + formatter);

      // print the formatter as a string
      System.out.println("" + formatter.toString());
	  
      formatter.close();
   }
}

让我们编译并运行上述程序,这将产生以下结果:

Hello World !
Hello World !

德国地区设置的 Formatter 对象的字符串表示示例

以下示例演示了如何使用 Java Formatter out() 方法打印格式化程序的目标。我们创建了一个带有 StringBuffer 和德国地区设置的 formatter 对象。Formatter 用于使用 format() 方法打印字符串。然后使用 toString() 方法打印其内容。

package com.tutorialspoint;

import java.util.Formatter;
import java.util.Locale;

public class FormatterDemo {
   public static void main(String[] args) {

      // create a new formatter
      StringBuffer buffer = new StringBuffer();
      Formatter formatter = new Formatter(buffer, Locale.GERMAN);

      // format a new string
      String name = "World";
      formatter.format("Hello %s !", name);

      // print the formatted string with default locale
      System.out.println("" + formatter);

      // print the formatter as a string
      System.out.println("" + formatter.toString());
	  
      formatter.close();
   }
}

让我们编译并运行上述程序,这将产生以下结果:

Hello World !
Hello World !

法国地区设置的 Formatter 对象的字符串表示示例

以下示例演示了如何使用 Java Formatter out() 方法打印格式化程序的目标。我们创建了一个带有 StringBuffer 和法国地区设置的 formatter 对象。Formatter 用于使用 format() 方法打印字符串。然后使用 toString() 方法打印其内容。

package com.tutorialspoint;

import java.util.Formatter;
import java.util.Locale;

public class FormatterDemo {
   public static void main(String[] args) {

      // create a new formatter
      StringBuffer buffer = new StringBuffer();
      Formatter formatter = new Formatter(buffer, Locale.FRENCH);

      // format a new string
      String name = "World";
      formatter.format("Hello %s !", name);

      // print the formatted string with default locale
      System.out.println("" + formatter);

      // print the formatter as a string
      System.out.println("" + formatter.toString());
	  
      formatter.close();
   }
}

让我们编译并运行上述程序,这将产生以下结果:

Hello World !
Hello World !
java_util_formatter.htm
广告