I need to create a String using the Formater to display some double float values. I'm not clear on how to code it. Here is what I have:
Double dWeightInKg = 100;
Double dWeightInLbs = 220:
String headerText = String.format("%.0f kg / %.0f lbs",Double.toString(dWeightInKg) , Double.toString(dWeightInLbs));
I'm looking for the following output:
100 kg / 220 lbs
I get a runtimeexception - badArgumentType(formater) on my String.format line.