Locale: setDefault(Locale newLocale) : Locale « java.util « Java by API
- Java by API
- java.util
- Locale
Locale: setDefault(Locale newLocale)
import java.util.Locale;
public class Main {
public static void main(String[] argv) throws Exception {
Locale.setDefault(Locale.FRENCH);
}
}
Related examples in the same category