Skip to content

Instantly share code, notes, and snippets.

@ShanikaNishadhi
Created March 29, 2019 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ShanikaNishadhi/891a102753f1174ebfae0edbf95d8151 to your computer and use it in GitHub Desktop.
Save ShanikaNishadhi/891a102753f1174ebfae0edbf95d8151 to your computer and use it in GitHub Desktop.
import java.util.Locale;
class Main {
public static void main(String[] args) {
Locale locale = Locale.GERMANY;
String defaultCountry = locale.getDisplayCountry();
String targetCountry = locale.getDisplayCountry(locale);
System.out.println(defaultCountry);
System.out.println(targetCountry);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment