Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions? | Software Development
 

Java bigdecimal stripTrailingZeros example

Example below demonstrates working of bigdecimal class stripTrailingZeros method. Method returns bigdecimal object values.

Java bigdecimal stripTrailingZeros example

                         

Example below demonstrates working of bigdecimal class stripTrailingZeros method. Method returns bigdecimal object values. This bigdecimal class method generates bigdecimal values after removing the trailing zeros of  the fractional part. Value returned by the method is numerically equal to this.object value but with no trailing zeros.

For example if the bigdecimal value is 52.000 then the method will generated answer 52 because this 52 is numerically equal and without any trailing zeros.

On the bases of above illustration, it is clear that for any integer or decimal bigdecimal value,  method result  will be a numerical equal value without any trailing zeros.

Method generates NumberFormatException, if it finds the bigdecimal value other than integers and double types values. 

Syntax for using the method: public BigDecimal stripTrailingZeros() 
BigDecimal obj = new BigDecimal(double), obj_1 = new BIgDecimal(0);
    obj_1 = obj.signum();
System.out.println(obj_1); 

Java_bigdecimal_stripTrailingZeros.java

import java.math.BigDecimal;

public class Java_bigdecimal_stripTrailingZeros {
  public static void main(String args[]) {

    double value = -500.000;
    BigDecimal obj_0 = new BigDecimal(value), obj_1;

    obj_1 = obj_0.stripTrailingZeros();
    System.out.println(" value processed : " + value
        "\nmethod generated value : " + obj_1);

    value = 203.000000;
    obj_0 = new BigDecimal(value);
    obj_1 = obj_0.stripTrailingZeros();
    System.out.println("\n value processed : " + value
        "\nmethod generated value : " + obj_1);

    value = -125.000000000;
    obj_0 = new BigDecimal(value);
    obj_1 = obj_0.stripTrailingZeros();
    System.out.println("\n value processed : " + value
        "\nmethod generated value : " + obj_1);

  }
}

Download the code

                         

» View all related tutorials
Related Tags: c git ide class object integer method sed type double decimal gd operator value number return int this opera id

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
 
Tell A Friend
Your Friend Name

 

 
Recently Viewed
Software Solutions
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.