Java Formatter locale() 方法



描述

Java Formatter locale() 方法返回此格式化程序构造时设置的区域设置。 此对象(具有区域设置参数)的 format 方法不会更改此值。

声明

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

public Locale locale()

参数

返回值

如果未应用任何本地化,则此方法返回 null,否则返回一个区域设置。

异常

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

获取美国区域设置的 Formatter 对象的区域设置示例

以下示例演示了 Java Formatter locale() 方法的用法,用于打印格式化程序的区域设置。我们使用 StringBuffer 和区域设置创建了一个格式化程序对象。Formatter 用于使用 format() 方法打印字符串。然后打印其区域设置。我们在这里使用 Locale.US 作为区域设置。

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 locale
      System.out.println("" + formatter.locale());
	  
      formatter.close();
   }
}

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

Hello World !
en_US

获取加拿大区域设置的 Formatter 对象的区域设置示例

以下示例演示了 Java Formatter locale() 方法的用法,用于打印格式化程序的区域设置。我们使用 StringBuffer 和区域设置创建了一个格式化程序对象。Formatter 用于使用 format() 方法打印字符串。然后打印其区域设置。我们在这里使用 Locale.CANADA 作为区域设置。

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.CANADA);

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

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

      // print locale
      System.out.println("" + formatter.locale());
	  
      formatter.close();
   }
}

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

Hello World !
en_CA

获取法语区域设置的 Formatter 对象的区域设置示例

以下示例演示了 Java Formatter locale() 方法的用法,用于打印格式化程序的区域设置。我们使用 StringBuffer 和法语区域设置创建了一个格式化程序对象。Formatter 用于使用 format() 方法打印字符串。然后打印其区域设置。我们在这里使用 Locale.FRENCH 作为区域设置。

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 locale
      System.out.println("" + formatter.locale());
	  
      formatter.close();
   }
}

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

Hello World !
fr
java_util_formatter.htm
广告