Thursday, June 18, 2026
HomeLanguagesJavaDecimalFormat setPositiveSuffix() method in Java

DecimalFormat setPositiveSuffix() method in Java

The setPositiveSuffix() method of the DecimalFormat class in Java is used to set a positive suffix value for this DecimalFormat instance.

Syntax:

public void setPositiveSuffix(String newValue)

Parameters: This method a single parameter newValue which is the new value to be set as a positive suffix for this DecimalFormat instance.

Return Value: This method does not returns any value.

Below program illustrate the above method:




// Java program to illustrate the
// setPositiveSuffix() method
  
import java.text.DecimalFormat;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Create a DecimalFormat instance
        DecimalFormat deciFormat = new DecimalFormat();
  
        // Set a positive suffix value
        deciFormat.setPositiveSuffix("positive");
  
        // Print a number with positive suffix
        System.out.println(deciFormat.format(12345));
    }
}


Output:

12, 345positive

Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#setPositiveSuffix(java.lang.String)

RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6898 POSTS0 COMMENTS
Nicole Veronica
12014 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6965 POSTS0 COMMENTS