Here you can find the source of resetDecimalFormat()
public static void resetDecimalFormat()
//package com.java2s; //License from project: Open Source License import java.text.DecimalFormat; public class Main { private static DecimalFormat decimalFormat; public static void resetDecimalFormat() { decimalFormat = new DecimalFormat("#.#####"); }// www . j a v a2 s .com }