Java Locale CANADA_FRENCH
Syntax
Locale.CANADA_FRENCH has the following syntax.
public static final Locale CANADA_FRENCH
Example
In the following code shows how to use Locale.CANADA_FRENCH field.
//from w w w. j av a2 s .co m
import java.util.Locale;
public class Main {
public static void main(String[] args) {
Locale locale = Locale.CANADA_FRENCH;
System.out.println("Locale1:" + locale);
// print the country of this locale
System.out.println("Country:" + locale.getCountry());
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »