All I want to do is Format numbers in compact (abbreviated) notation, like "1.2K" instead of "1200", but I seem to can't figure out how to do that with CompactDecimalFormat
When I do: CompactDecimalFormat.getInstance().parse("1200")
it still gives me "1200" and not "1.2K"