El método locale() de la clase java.util.Scanner devuelve la configuración regional de este escáner.
Sintaxis:
public Locale locale()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: esta función devuelve la configuración regional de este escáner
Los siguientes programas ilustran la función anterior:
Programa 1:
// Java program to illustrate the // locale() method of Scanner class in Java // without parameter import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { String s = "Gfg Geeks GeeksForGeeks"; // create a new scanner // with the specified String Object Scanner scanner = new Scanner(s); // print the locale System.out.println(scanner.locale()); scanner.close(); } }
Producción:
en_US
Programa 2:
// Java program to illustrate the // locale() method of Scanner class in Java // without parameter import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { String s = "121324"; // create a new scanner // with the specified String Object Scanner scanner = new Scanner(s); // print the locale System.out.println(scanner.locale()); scanner.close(); } }
Producción:
en_US
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html#locale()