Java Double Number to String doubleToCoreString(double number)

Here you can find the source of doubleToCoreString(double number)

Description

double To Core String

License

BSD License

Declaration

public static String doubleToCoreString(double number) 

Method Source Code

//package com.java2s;
// LICENSE:      This file is distributed under the BSD license.

import java.text.DecimalFormat;

public class Main {
    private static DecimalFormat coreDoubleFormat_;

    public static String doubleToCoreString(double number) {
        return coreDoubleFormat_.format(number);
    }//ww w.  java2 s.  c o  m
}

Related

  1. double2String(double d)
  2. double2String(double value)
  3. doublesToStrings(final double... numbers)
  4. doubleToAtLeastString(double d, int length)
  5. doubleToDollarString(double val)
  6. doubleToFixedString(double d, int length)
  7. doubleToScientificString(double number, int fractionDigits)
  8. doubleToStr(double d)