- Java.util 包类
- Java.util - 首页
- Java.util - ArrayDeque
- Java.util - ArrayList
- Java.util - Arrays
- Java.util - BitSet
- Java.util - Calendar
- Java.util - Collections
- Java.util - Currency
- Java.util - Date
- Java.util - Dictionary
- Java.util - EnumMap
- Java.util - EnumSet
- Java.util - Formatter
- Java.util - GregorianCalendar
- Java.util - HashMap
- Java.util - HashSet
- Java.util - Hashtable
- Java.util - IdentityHashMap
- Java.util - LinkedHashMap
- Java.util - LinkedHashSet
- Java.util - LinkedList
- Java.util - ListResourceBundle
- Java.util - Locale
- Java.util - Observable
- Java.util - PriorityQueue
- Java.util - Properties
- Java.util - PropertyPermission
- Java.util - PropertyResourceBundle
- Java.util - Random
- Java.util - ResourceBundle
- Java.util - ResourceBundle.Control
- Java.util - Scanner
- Java.util - ServiceLoader
- Java.util - SimpleTimeZone
- Java.util - Stack
- Java.util - StringTokenizer
- Java.util - Timer
- Java.util - TimerTask
- Java.util - TimeZone
- Java.util - TreeMap
- Java.util - TreeSet
- Java.util - UUID
- Java.util - Vector
- Java.util - WeakHashMap
- Java.util 包额外内容
- Java.util - 接口
- Java.util - 异常
- Java.util - 枚举
- Java.util 有用资源
- Java.util - 有用资源
- Java.util - 讨论
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
广告