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

I use formatter for my double values in Java like:

private static final NumberFormat formatter = new DecimalFormat("###0.00");
formatter.format(doubleValue);

However I don't want to do it on the server side. How can I write an equivalent code in Javascript or JQuery?

share|improve this question
1  
But ... JSP is a server-side thing too ... – Pointy Mar 2 '11 at 16:34
Editted question, thanks. – kamaci Mar 2 '11 at 16:37
1  
@casablanca JavaScript actually can run on the server, but you're right in that's not what @kamaci is going for. He wants to write some JavaScript into his JSP to be run on the client, or to do it in JSP alone. – corsiKa Mar 2 '11 at 16:41
1  
@casablanca thats what I want to do. @Pointy JavaScript runs on client side so I want to format it at client side. – kamaci Mar 2 '11 at 16:41
1  
@glowcoder you exactly explained what I mean – kamaci Mar 2 '11 at 16:43
show 6 more comments

5 Answers

up vote 6 down vote accepted

Use the NumberFormatter plug-in for JQuery.

share|improve this answer

I know this doesn't really answers your question, but have you thought of using the jstl formatNumber tag?

share|improve this answer

Use JSTL <fmt:formatNumber> ... http://www.tutorialspoint.com/jsp/jstl_format_formatnumber_tag.htm

<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

<fmt:formatNumber type="number" pattern="###0.00" value="${bean.value}" />
share|improve this answer

Trying using sprintf() for JavaScript.

share|improve this answer

Ext JS's Format class has a number function you can use to do this, see Ext.util.Format. As of Ext 4 it also supports locale-specific "thousand separators".

I guess the downside is that you need to import part of the Ext framework to use it!

share|improve this answer
Although I think this can do what you need, it's not as powerful as Java's NumberFormat class. – Mark Rhodes Jan 4 '12 at 10:57

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.