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 - Use locale specific formatting for numbers
Summary: Use locale specific formatting for numbers
Status: NEW
Alias: None
Product: profiler
Classification: Unclassified
Component: Base (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@profiler
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-07-23 19:06 UTC by _ rkubacki
Modified: 2009-07-23 19:06 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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?