| Author |
java.util.UnknownFormatConversionException: Conversion = 'i' error
|
Nick Petas
Ranch Hand
Joined: Jan 31, 2007
Posts: 38
|
|
Here is the source code :
The code that produces the error of the topic is bold.
Thank you.
|
 |
pete stein
Bartender
Joined: Feb 23, 2007
Posts: 1561
|
|
Your problem is with the percent symbol, "%", as the printf method thinks that it's a format specifier. To use it literally as a percent symbol, you'll need to use two of them in a row. So change this:
to this:
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 9950
|
|
|
The bold tag does not work inside the 'code' tags. Referring to the specific line number where the error is would be the best way.
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
 |
|
|
subject: java.util.UnknownFormatConversionException: Conversion = 'i' error
|
|
|