Link to home
Start Free TrialLog in
Avatar of Shivtek
Shivtek

asked on

Java formatter and decimal format

Hey Guys,

I am trying to print a variable:

            DecimalFormat a = new DecimalFormat("###.00");
            Formatter fmt = new Formatter();

System.out.printf("\tText $" + "\t\t" + a.format(totalText));

I want to put a formatter in it too so that the printed number right justifies.

Is there maybe a better way to do it.?

Thanks
Avatar of a_b
a_b

In the formatter class the output is right justified within the given width.
Avatar of Shivtek

ASKER

how can I put a decimal format and formatter?
float pi = 3.1422313213;
System.out.format("%10.3f%n", pi);             //  -->  "     3.142"
I am still not clear about what output do you expect.

Here is a link on formatting - http://java.sun.com/docs/books/tutorial/java/data/numberformat.html
Avatar of Shivtek

ASKER

I want to print:

exmaple:

       Text $          4523423.00
       Link $                  656.98
Another $                  634.75

Something like this.


Avatar of CEHJ
Surely you'd probably need something more like this?
curr.png
Avatar of Shivtek

ASKER

Yes would need to text right justified as well...

And how do I do that?
>>Yes would need to text right justified as well...

The text is *left* justified ...
Avatar of Shivtek

ASKER

How is all this done?
Doesn't look like you need a DecimalFormat at all, what a_b posted above looks list it is all you need

float pi = 3.1422313213;
System.out.format("%10.3f%n", pi);             //  -->  "     3.142"

ASKER CERTIFIED SOLUTION
Avatar of a_b
a_b

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Shivtek

ASKER

What does the %n do?
new line
Avatar of Shivtek

ASKER

GREAT!!!  a_b, I must say your answer was THE BEST....WICKED *_*

Thanks a lot!!
>>I must say your answer was THE BEST

That gives the following, with the amount right-justified, but with the currency sign disassociated from the amount



Text $               4523423.00
Link $                   656.98
Another $                634.75