当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.util.Formatter.locale()用法及代码示例



描述

这个java.util.Formatter.locale()方法返回由此格式化程序的构造设置的语言环境。具有区域设置参数的此对象的格式方法不会更改此值。

声明

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

public Locale locale()

参数

NA

返回值

如果未应用本地化,则此方法返回 null,否则返回语言环境

异常

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

示例

下面的例子展示了 java.util.Formatter.locale() 方法的用法。

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());
   }
}

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

Hello World !
en_US

相关用法


注:本文由纯净天空筛选整理自 Java.util.Formatter.locale() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。