Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anybody recommend a class library or a design pattern that models amounts of Money?

I guess it should support:

  • multiple currencies
  • a mechanism to indicate the number of decimals
  • math (respecting certain rounding conventions (cfr ie. Banker's Rounding))
  • serialisation to and from a String representation
  • ... ?

I.e. 19.99 USD could be serialized into "USD-2-00000001999"
(Whereas 2 indicates the number of decimals)

Thank you! J.

share|improve this question

5 Answers

up vote 4 down vote accepted

I would check the monetary module from the JScience project (by Jean Marie Dautelle).

Depending on your exact needs, Stephen Colebourne started Joda-Money ("a more focussed project" [than JScience]) some time ago. But there is no full release available yet (version 0.5 was released one year ago).

share|improve this answer
Joda-Money looks great!But development seems to have stopped since 2009! ....time to jump-on-board and help the developer. – Elister Jul 6 '11 at 6:28
1  
Joda-Money is pretty stable, so doesn't need a lot of development. That said, I'd appreciate feedback, reviews and small enhancement proposals (eg GitHub forks) – JodaStephen Jan 18 '12 at 11:34

Joda-money looks promising as well: http://joda-money.sourceforge.net/ (Not sure how production ready it is though)

share|improve this answer

Martin Fowler's Analysis Patterns have something that looks relevant

share|improve this answer

Adding to what Paul said, there's Martin Fowler's Money Pattern.

share|improve this answer

this looks like it might help, but I have no experience with it: http://quantlib.org/index.shtml

share|improve this answer
There seems to be a Java port: JQuantlib (jquantlib.org). When looking at the API's, I don't immediately see an Amount class however... In a class like Coupon, the amounts are modelled as double. I might be mistaken. Thx anyway! – Jan Nov 10 '10 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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