I have a JTable where one of the columns is an amount in dollars and cents. I define this TableColumn as a Double and it right justifies and when sorting, it sorts it as a double (not as a string). This is all well and good.
My problem now is that it truncates trailing zeros. 100.00 is displayed as 100 0.00 is displayed as 0, etc. I tried a TableCellRenderer but although this causes the money column to display with trailing zeros, the amounts are now all left justified and the JTable sees this as a string.
I want the trailing zeros to be retained in displays but also to retain the data type so that sorting and right justifying occur. The datatype does not need to be a double if there is a better way to do this.
| |||||
feedback
|
|
I found the perfect link. This worked first time. Just copy the code. http://tips4java.wordpress.com/2008/10/11/table-format-renderers/ | |||
|
feedback
|
|
If you want to handle money precisely, you should represent it as cents and Integers, or BigInts if you have to handle huge amounts. Floating point numbers can cause problems because they suffer from precision problems This will preserve your ability to sort, remove the problem of trailing zeroes, give you the precision you need, and with a custom renderer, you can get the decimal point where it needs to be. | |||
|
feedback
|