The comma is the placeholder for the grouping separator, and the period is the placeholder for the decimal separator.
NumberFormat format = DecimalFormat.getInstance(Locale.US);
System.out.println(format.parse("5.500").longValue());
System.out.println(format.parse("55.00").longValue());
System.out.println(format.parse("550.0").longValue());
. , , , . , . - 5,5.0,0,, .
, 3 2 .
, , . , .
java.text.DecimalFormat, Oracle, , .
1526
1527
1528
...