Skip to content

Instantly share code, notes, and snippets.

@ShanikaNishadhi
Created March 29, 2019 14:30
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/d8c3264e519ec7c31768e27dd0c7244c to your computer and use it in GitHub Desktop.
Save ShanikaNishadhi/d8c3264e519ec7c31768e27dd0c7244c to your computer and use it in GitHub Desktop.
import java.util.Locale;
class Main {
public static void main(String[] args) {
Locale locale = Locale.GERMAN;
System.out.println("Locale:" + locale);
System.out.println("ISO 2: " + locale.getLanguage());
System.out.println("ISO 3: " + locale.getISO3Language());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment