I am making a fake bank application, where they have a double that starts out at 0.00
Double dblCurrentBalance = 0.00;
DecimalFormat decim = new DecimalFormat("##.00");
jlInput2.setText("Your Balance: $" + Double.parseDouble(decim.format(dblCurrentBalance)));
But it seems to only display:
Your balance: $0.0
When I want:
Your balance: $0.00
If I have it set to 1.1111111
It'll display 1.11
So how do I get keep the second 0?