Here you can find the source of convertDoubleShareToString(double shares)
public static String convertDoubleShareToString(double shares)
//package com.java2s; //License from project: Apache License public class Main { public static String convertDoubleShareToString(double shares) { // DecimalFormat dfPrice = new DecimalFormat("######0.000"); return String.format("%.3f", shares); }/*ww w. j av a2s . c om*/ }