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


Java Locale toString()用法及代码示例


Java中的Locale类的toString()方法用于返回此语言环境的字符串表示形式。每个元素(即语言,国家或地区的变体)之间都用下划线隔开

用法:

LOCALE.toString()

参数:此方法不带任何参数。


返回值:此方法返回此语言环境的字符串表示形式。

以下示例程序旨在说明toString()方法的用法:

示例1:

// Java code to illustrate toString() method 
  
import java.util.*; 
  
public class Locale_Demo { 
    public static void main(String[] args) 
    { 
  
        // Creating a new locale 
        Locale first_locale 
            = new Locale("nu", "NO", "NY"); 
  
        // Displaying first locale 
        System.out.println("First Locale: "
                           + first_locale); 
  
        // Displaying the string of this locale 
        System.out.println("The String: "
                           + first_locale.toString()); 
    } 
}
输出:
First Locale: nu_NO_NY
The String: nu_NO_NY

示例2:

// Java code to illustrate toString() method 
  
import java.util.*; 
  
public class Locale_Demo { 
    public static void main(String[] args) 
    { 
  
        // Creating a new locale 
        Locale first_locale 
            = new Locale("ar", "SA"); 
  
        // Displaying first locale 
        System.out.println("First Locale: "
                           + first_locale); 
  
        // Displaying the string of this locale 
        System.out.println("The String: "
                           + first_locale.toString()); 
    } 
}
输出:
First Locale: ar_SA
The String: ar_SA


相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 Locale toString() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。