Let\'s say I wanted to print 5 lines. Which is the best method (for performance and readability).
System.out.println();
System.out.println();
System.out.prin
As you can see from the answers, this is a matter of preference. The example you give is a very simple one where the performance gains and readability issues are minimal. In some more complicated cases, however, the choice of which seemingly equivalent methods to use could be crippling to your code, or could make it indecipherable to a neighbor.
If code looks like it's getting kind of messy, try abstracting out the messy code and giving it an easy to read method name.
So yes, this is a matter of preference.
(Edit: no, this is apparently not a matter of preference (^o^ )// )