Here you can find the source of formatNumber(String value)
public static String formatNumber(String value)
//package com.java2s; //License from project: Open Source License public class Main { public static String formatNumber(String value) { if (value == null) return null; return value.replace(",", "."); }//w w w . ja v a 2s. c o m }