I have code like this:
import java.util.Locale;
Locale locale = new Locale("en_US");
When I wrote:
System.out.println(locale.toString());
it returns
en_us
not
en_US
is any way to get case-sensitive value?
I have code like this:
import java.util.Locale;
Locale locale = new Locale("en_US");
When I wrote:
System.out.println(locale.toString());
it returns
en_us
not
en_US
is any way to get case-sensitive value?
Copyright © 2021 Jogjafile Inc.
Taken from Oracle:
The language field is case insensitive, but Locale always canonicalizes to lower case.