Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.text.FieldPosition;
import java.text.NumberFormat;

public class Main {
    public static void main(String[] args) throws Exception {
        NumberFormat numberFormat = NumberFormat.getPercentInstance();

        StringBuffer sb = new StringBuffer();

        Object value = 11.111;
        numberFormat.format(value, sb, new FieldPosition(NumberFormat.FRACTION_FIELD));
        System.out.println(sb);

    }
}