Java Decimal Format toStringForHumans(double doubleToConvert)

Here you can find the source of toStringForHumans(double doubleToConvert)

Description

to String For Humans

License

Open Source License

Declaration

public static String toStringForHumans(double doubleToConvert) 

Method Source Code

//package com.java2s;
/* /*from ww w.ja v a  2  s.  co m*/
Copyright 2005-2018, Foundations of Success, Bethesda, Maryland
on behalf of the Conservation Measures Partnership ("CMP").
Material developed between 2005-2013 is jointly copyright by Beneficent Technology, Inc. ("The Benetech Initiative"), Palo Alto, California.
    
This file is part of Miradi
    
Miradi is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3, 
as published by the Free Software Foundation.
    
Miradi is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
    
You should have received a copy of the GNU General Public License
along with Miradi.  If not, see <http://www.gnu.org/licenses/>. 
*/

import java.text.NumberFormat;

public class Main {
    public static String toStringForHumans(double doubleToConvert) {
        NumberFormat formatter = NumberFormat.getInstance();
        return formatter.format(doubleToConvert);
    }
}

Related

  1. toString(double[] array)
  2. toString(Double[] input)
  3. toString(double[][] a, int decimals)
  4. toString(final Double value)
  5. toString(final double value, final int maxDecimalPlaces)
  6. toStringNoDigits(double[] v)
  7. toStringScientific(double x)
  8. trim(int degree, double d)
  9. trim(int level, double value)