Java tutorial
//package com.java2s; //License from project: Apache License import java.text.DecimalFormat; public class Main { private static DecimalFormat formatter; public static DecimalFormat getDecimalFormatter() { if (formatter == null) { formatter = new DecimalFormat("##.####"); } return formatter; } }