Java Float Number Format formatFloat(float val)

Here you can find the source of formatFloat(float val)

Description

format Float

License

LGPL

Declaration

public static String formatFloat(float val) 

Method Source Code

//package com.java2s;
/*/*from www  .j a v  a 2  s .c  om*/
 *  MSS Code Factory CFLib 2.1
 *
 *   Copyright (c) 2014-2015 Mark Sobkow
 *   
 *   This program is available as free software under the GNU LGPL v3, or
 *   under a commercial license from Mark Sobkow.  For commercial licensing
 *   details, please contact msobkow@sasktel.net.
 *
 *   Under the terms of the LGPL:
 *   
 *      This program is free software: you can redistribute it and/or modify
 *      it under the terms of the GNU Lesser General Public License as
 *      published by the Free Software Foundation, either version 3 of
 *      the License, or (at your option) any later version.
 *     
 *      This program 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 Lesser General Public License for more details.
 *     
 *      You should have received a copy of the GNU Lesser General Public
 *      License along with this program.  If not,
 *      see http://www.gnu.org/licenses/.
 */

public class Main {
    public static String formatFloat(float val) {
        String retval = Float.toString(val);
        return (retval);
    }
}

Related

  1. formatFloat(double number, int precision)
  2. formatFloat(double value, int decimals)
  3. formatFloat(float f)
  4. formatFloat(float input, int numDecimals)
  5. formatFloat(float num, int width, int precision)
  6. formatFloat(String value)