Java Format Line up Space

In this chapter you will learn:

  1. What is space flag
  2. Syntax for space flag
  3. Example - justify flags to align positive and negative values

Description

We can use space to add a space before positive numeric output.

Syntax

fmt.format("% d", -100);

Example

The following code shows how to use justify flags to align positive and negative values.


import java.util.Formatter;
/* w  w  w.  j ava2 s.c  o  m*/
public class Main {
  public static void main(String args[]) {
    Formatter fmt = new Formatter();
    fmt.format("% d", -100); 
    System.out.println(fmt); 
 
    fmt = new Formatter(); 
    fmt.format("% d", 100); 
    System.out.println(fmt); 
 
    fmt = new Formatter(); 
    fmt.format("% d", -200); 
    System.out.println(fmt); 
 
    fmt = new Formatter(); 
    fmt.format("% d", 200); 
    System.out.println(fmt); 
  }
}

The output:

Next chapter...

What you will learn in the next chapter:

  1. When to use Format Parentheses
  2. Syntax for Java Format Parentheses
  3. How to show negative numeric inside parentheses
Home »
  Java Tutorial »
    Java Langauge »
      Java Data Format
Java Formatter Class
Java Format Specifier
Java Format Specifier Uppercase
Java Format Precision
Java Format Flags
Java Format Justifying Output
Java Format Negative and Positive
Java Format Line up Space
Java Format Parentheses
Java Format Zero Padding
Java Format Comma
Java Format Alternate Conversion
Java Format Argument Index
Java Format date time
Java Format Date