vote up 2 vote down star

I need to write the code that would format the value according to the specified options.

Right now there is several formatting options that can be chosen: rounding/truncating the number with the specified precision, added prefix (e.g $) or postfix (e.g. %), grouping thousands (applying commas), adding numeric abbreviations (KMB).

So e.g. number 1857 could be displayed as $2K or $1.86K or $ 1,867

At first I thought about using Decorator pattern for this but I am not sure because the formatters should be applied in a specific order,e.g. at first I need to apply KMB conversion: 1857 -> 1.857 K, then round it 1.86 K.

Do you have any suggestions?

Thanks, matali

flag
good lord. someone has been reading too much GOF... – Nicholas Mancuso Jan 26 at 21:03
"Small Boy With A Pattern" syndrome strikes again... – duffymo Jan 26 at 21:08
ha,ha and not enough looking into Java API – matali Jan 26 at 22:57

2 Answers

vote up 12 vote down check

No, use the java.text.NumberFormat options that are already available to you. They're fully internationalized already.

link|flag
+1 Don't reinvent the wheel – nooomi Jan 26 at 21:08
Sometimes you have implement these things, banking business can be very picky – t3mujin Jan 27 at 15:20
vote up 0 vote down

Assuming there's no existing implementation that suits your needs there are different options other than Decorator:

If you can decompose the formatting in rules (decimal separator, thousand separator, currency) then a Chain of Responsibility (http://www.dofactory.com/Patterns/PatternChain.aspx) where each block handles is rule can be an option, and you can run it on a specific order.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.