Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting a java object in my velocity template. The object has a double value which I want to format to 2 decimal places and display it in my template.

The class for which im getting an object is something like this

Class Price
{
double value;
String currency;
}

In my velocity template, im getting the value like this

$price.value

but I need to format it to 2 decimal places before displaying it.

I want to convert

23.59004 to 23.59

35.7 to 35.70

3.0 to 3.00

9 to 9.00

Please tell me how can I do it in velocity template? I searched a lot for this and found that I can use velocity tools, but there are no examples related to it? and can i use velocity tools in templates?

share|improve this question

3 Answers

up vote 7 down vote accepted

Velocity tools are expected to be used in Velocity templates; essentially they are objects added to the variables available in a template so that you can use $numberTool.format("#0.00", $val) or similar. If none of the available tools don't fit your needs, simply create a POJO and add it to the template.

share|improve this answer
im not able to use $numberTool, it simply prints numberTool.format($val,"#0.00"), do I need to include anything? – rao_555 Jan 11 '12 at 14:01
1  
See 'org.apache.velocity.tools.generic.NumberTool'. If you are using the tools.xml configuration, just follow the javadoc; if not, create a new NumberTool and add it to the parameter map. – Tassos Bassoukos Jan 11 '12 at 14:21
Thanks I got it...:) – rao_555 Jan 11 '12 at 14:31
1  
gosh, I didn't check the javadocs and was pulling my hair on : $numberTool.format($val,"#0.00"). To anyone, the format is : $numberTool.format("#0.00", $val) – TJ- Mar 6 '12 at 8:04

formatCurrency($value). This is good java velocity code to format a number to currency format.

share|improve this answer

$numberTool.format("#0.00", $val)

share|improve this answer

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.