import java.util.Locale;

public class Junk{

    public static void main(String[] args) {
        Locale lc;
        System.out.println("Locale.getDefault() = "+Locale.getDefault());
        System.out.println(String.format(lc=Locale.getDefault(), "locale %s: %s = %4.2f\n", lc, "0.09", 0.09));
        System.out.println(String.format(lc=new Locale("nl", "NL"), "locale %s: %s = %4.2f\n", lc, "0.09", 0.09));
        System.out.println(String.format(lc=new Locale("fr","FR"), "locale %s: %s = %4.2f\n", lc, "0.09", 0.09));
        System.out.println(String.format("%s = %s\n", "nl_NL", new Locale("nl","NL")));
        System.out.println(String.format("%s = %s\n", "en_US", Locale.forLanguageTag("en_US").toString()));
    }
}
