Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.text.NumberFormat;

public class Main {

    public static String formatInteger2String(Integer formater) {
        try {
            NumberFormat nbf = NumberFormat.getInstance();
            nbf.setMinimumFractionDigits(0);
            return nbf.format(formater);
        } catch (Exception e) {
            // TODO: handle exception
            return "-";
        }
    }
}