Details
Description
Test with below test case:
public class Test {
public static void main(String[] args)
{ String lang = System.getProperty("user.language"); String country = System.getProperty("user.country"); System.out.println("user.language=" + lang); System.out.println("user.contry=" + country); }}
it always print out
user.language=en
user.contry=US
even if system language and region are set to other values.