convert int into formatted string with commas code example
Example: java convert string with commas to long
Long maxValue = Long.valueOf(str.replace(",","")); // convierte el string 123,1246,125 al Long 1231246125
Long maxValue = Long.valueOf(str.replace(",","")); // convierte el string 123,1246,125 al Long 1231246125