Here you can find the source of formatGetal(float getal)
public static String formatGetal(float getal)
//package com.java2s; //License from project: Apache License import java.text.DecimalFormat; import java.text.DecimalFormatSymbols; public class Main { public static String formatGetal(float getal) { DecimalFormatSymbols dfs = new DecimalFormatSymbols(); dfs.setGroupingSeparator('.'); dfs.setDecimalSeparator(','); DecimalFormat decimalFormat = new DecimalFormat("0.##"); decimalFormat.setDecimalFormatSymbols(dfs); return decimalFormat.format(getal); }// w w w . j a v a 2s. co m }