This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 169066

Summary: Use locale specific formatting for numbers
Product: profiler Reporter: _ rkubacki <rkubacki>
Component: BaseAssignee: issues@profiler <issues>
Status: NEW ---    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:

Description _ rkubacki 2009-07-23 19:06:53 UTC
Sometimes it is annoying to count digits to find how much space is occupied.

'123456789' is easier to read in "en_US" locale as '123,456,789' or in "CS" as '123 456 789'. Can you use something like
String.format("%1$,d", number) to make the numbers more readable?