8.25.1.%b Formats a boolean value (wrapper or primitive)
import java.util.Formatter;
public class MainClass{ public static void main(String[] argv){
StringBuilder sb = new StringBuilder();
Formatter f = new Formatter(sb); boolean b = false;
f.format("The value is %b, so there.", b);
System.out.println(sb);
}
}