I can't find any method on the Boolean class to serialize a Boolean to "1" and "0" instead of "true" and "false".
Is there any native function to do that ? If not, what is the best way (most optimized way) ?
Update: I indeed mean to produce a String out of a Boolean.
Booleanto "true" and "false"? Or are you simply talking about producing aStringfrom aBoolean? – Joachim Sauer Jun 14 '11 at 8:12bbe a boolean:int i = b ? 1 : 0;. – Kevin Jun 14 '11 at 8:13Boolean, in which casebcould benull! – Joachim Sauer Jun 14 '11 at 8:14int i == b ? 1 : 0;? – Eng.Fouad Jun 14 '11 at 8:21