Converting number to comma separated format in java [duplicate]
Possible Duplicate:
Displaying Currency in Indian Numbering Format
I have input number "123456" and want to convert it to "1,23,456" format in Java?
1234--> 1,234 and vice versa.
Any string operations present in Java library?
try java.text.NumberFormat for number formatting
精彩评论