Here you can find the source of formatPotencia(float potencia)
public static String formatPotencia(float potencia)
//package com.java2s; //License from project: Open Source License import java.text.DecimalFormat; public class Main { private static final String PATRON_POTENCIA = "#,##0.00 cv"; public static String formatPotencia(float potencia) { DecimalFormat df = new DecimalFormat(PATRON_POTENCIA); return df.format(potencia); }/* www .jav a 2 s . c om*/ }