當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.util.Scanner.useLocale()用法及代碼示例



描述

這個java.util.Scanner.useLocale(Locale locale)方法將此掃描器的語言環境設置為指定的語言環境。

聲明

以下是聲明java.util.Scanner.useLocale()方法

public Scanner useLocale(Locale locale)

參數

localeâˆ' 指定要使用的語言環境的字符串

返回值

此方法返回此掃描儀

異常

NA

示例

下麵的例子展示了 java.util.Scanner.useLocale() 方法的用法。

package com.tutorialspoint;

import java.util.*;

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

      String s = "Hello World! 3 + 3.0 = 6.0 true ";

      // create a new scanner with the specified String Object
      Scanner scanner = new Scanner(s);

      // print a line of the scanner
      System.out.println("" + scanner.nextLine());

      // change the locale of the scanner
      scanner.useLocale(Locale.ENGLISH);

      // display the new locale
      System.out.println("" + scanner.locale());

      // close the scanner
      scanner.close();
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

Hello World! 3 + 3.0 = 6.0 true 
en

相關用法


注:本文由純淨天空篩選整理自 Java.util.Scanner.useLocale() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。