Java PrintStream.printf(): Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 26: Line 26:
Left-padding with spaces is achieved as follows:
Left-padding with spaces is achieved as follows:


  printf("%<b>''width''</b>s", ''number'')
  System.out.printf("%<b>''width''</b>s", ''number'')

Revision as of 17:50, 29 August 2017

External

Internal

Overview

pw.printf("%s: %d", s, i);
System.out.printf("float: %2.2f\n",f);

Features

Leading Space Padding

This is useful when numbers with different lengths are required to be displayed aligned to the right.

Left-padding with spaces is achieved as follows:

System.out.printf("%widths", number)