Example usage for java.text NumberFormat getPercentInstance

List of usage examples for java.text NumberFormat getPercentInstance

Introduction

In this page you can find the example usage for java.text NumberFormat getPercentInstance.

Prototype

public static NumberFormat getPercentInstance(Locale inLocale) 

Source Link

Document

Returns a percentage format for the specified locale.

Usage

From source file:MainClass.java

public static void main(String[] args) {
    NumberFormat percentFormat = NumberFormat.getPercentInstance(Locale.ENGLISH);
    for (double d = 0.0; d <= 1.0; d += 0.005) {
        System.out.println(percentFormat.format(d));
    }/*from www.j  a  va 2s .  c  om*/
}

From source file:Main.java

public static void main(String[] args) throws Exception {
    NumberFormat numberFormat = NumberFormat.getPercentInstance(Locale.CANADA);
    System.out.println(numberFormat.getRoundingMode());
}

From source file:Main.java

public static void main(String[] args) throws Exception {
    NumberFormat numberFormat = NumberFormat.getPercentInstance(Locale.CANADA);
    System.out.println(numberFormat.hashCode());
}

From source file:Main.java

public static void main(String[] args) throws Exception {
    NumberFormat numberFormat = NumberFormat.getPercentInstance(Locale.CANADA);
    System.out.println(numberFormat.isParseIntegerOnly());
}

From source file:Main.java

public static void main(String[] args) throws Exception {
    NumberFormat numberFormat = NumberFormat.getPercentInstance(Locale.CANADA);
    System.out.println(numberFormat.getMaximumFractionDigits());
}

From source file:Main.java

public static void main(String[] args) throws Exception {
    NumberFormat numberFormat = NumberFormat.getPercentInstance(Locale.CANADA);
    System.out.println(numberFormat.isGroupingUsed());
}

From source file:Main.java

public static void main(String[] argv) throws Exception {

    Number number = NumberFormat.getPercentInstance(Locale.CANADA).parse("123.45%");
    // 1.2345/*from   w w w.ja  va2 s. c  om*/
    if (number instanceof Long) {
        System.out.println("Long value");
    } else {
        System.out.println("Double value");
    }
}

From source file:Main.java

public static void main(String[] argv) throws Exception {

    // Format//  ww  w. j  av  a 2s .  c o m
    Locale locale = Locale.CANADA;
    String string = NumberFormat.getPercentInstance(locale).format(123.45);

}

From source file:NumberFormatDemo.java

static public void displayPercent(Locale currentLocale) {

    Double percent = new Double(0.75);
    NumberFormat percentFormatter;
    String percentOut;/*from   w w w  .  jav  a2s .  c  o m*/

    percentFormatter = NumberFormat.getPercentInstance(currentLocale);
    percentOut = percentFormatter.format(percent);
    System.out.println(percentOut + "   " + currentLocale.toString());
}

From source file:net.sf.jasperreports.charts.util.CategoryLabelGenerator.java

public CategoryLabelGenerator(Map<Comparable<?>, Map<Comparable<?>, String>> labelsMap, Locale locale) {
    super(DEFAULT_LABEL_FORMAT_STRING, NumberFormat.getNumberInstance(locale),
            NumberFormat.getPercentInstance(locale));

    this.labelsMap = labelsMap;
}