You can use it as follows:
StringBuilder sb = new StringBuilder();
Formatter f = new Formatter(sb);
for (...)
{
f.format("%d %d\n", 1, 2);
myMethod(sb.toString());
sb.setLength(0);
}
This will result in the reuse of Formatter and StringBuilder, which may or may not be a performance gain for your use case.