Create Strings that represent a given locale's country and language in terms of both the default locale and any other locale: : Formatter « Utility Classes « SCJP






import java.util.Calendar;
import java.util.Date;
import java.util.Locale;

public class MainClass {
  public static void main(String[] argv) {
    Calendar c = Calendar.getInstance();
    c.set(2010, 11, 14);
    Date d2 = c.getTime();

    Locale locBR = new Locale("pt", "BR"); // Brazil
    Locale locDK = new Locale("da", "DK"); // Denmark
    Locale locIT = new Locale("it", "IT"); // Italy

    System.out.println("def " + locBR.getDisplayCountry());
    System.out.println("loc " + locBR.getDisplayCountry(locBR));

    System.out.println("def " + locDK.getDisplayLanguage());
    System.out.println("loc " + locDK.getDisplayLanguage(locDK));
    System.out.println("D>I " + locDK.getDisplayLanguage(locIT));

  }
}
def Brazil
loc Brasil
def Danish
loc Dansk
D>I danese








8.25.Formatter
8.25.1.%b Formats a boolean value (wrapper or primitive)
8.25.2.%c Formats a character
8.25.3.%d Formats an integer
8.25.4.%f Formats a floating-point number
8.25.5.%s Formats an object, generally by calling its toString() method
8.25.6.By default, arguments are formatted in their order of appearance in Formatter.
8.25.7.Stick a number and then a dollar sign ($) immediately after the % sign to set the order
8.25.8.Justified a field with Formatter
8.25.9.Control the number of characters that will appear to the right of the decimal point: %w.df
8.25.10.Internationalization and Formatter
8.25.11.Formatting Dates with java.text.DateFormat
8.25.12.Prints out a date in each of the four formats. (The locale is the U.S.)
8.25.13.DateFormat.getDateInstance() accepts a style and a locale.
8.25.14.Formatting Numbers and Currency
8.25.15.To format currency, call NumberFormat.getCurrencyInstance().
8.25.16.The Locale Class
8.25.17.Create Strings that represent a given locale's country and language in terms of both the default locale and any other locale:
8.25.18.The NumberFormat Class
8.25.19.Use getMaximumFractionDigits(), setMaximumFractionDigits(), parse(), and setParseIntegerOnly():