Here you can find the source of convertLongPriceToString(long price)
public static String convertLongPriceToString(long price)
//package com.java2s; //License from project: Apache License public class Main { public static String convertLongPriceToString(long price) { // DecimalFormat dfPrice = new DecimalFormat("######0.00"); // return dfPrice.format((double) price / 100); return String.format("%.2f", (double) price / 100); }/*w w w . j a v a2 s .c om*/ }