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

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Java BigDecimal longValue example 
 

Java bigdecimal class longValue() method transforms bigdecimal value exactly in to long type values.

 

Java BigDecimal longValue example

                         

Java bigdecimal class longValue() method transforms bigdecimal value exactly in to long type values. Method throws NumberFormatException if it finds a String bigdecimal  value instead of a integer or double value. In the example four bigdecimal  class objects namely: risk_0, risk_1, risk_2 & risk_3 respectively  have been created.

In the example along with method generated result, original bigdecimal  value is also shown.

Syntax for using the method: public long longValue()
System.out.println(bigdecimal_objectName.longValue()); 
or
long ln = (this.object).longValue();

Java_BigDecimal_longValue.java

import java.math.BigDecimal;
import java.math.MathContext;

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

    BigDecimal risk_0 = new BigDecimal(9.005440000),
    risk_1 = new BigDecimal(73.00654000),
    risk_2 = new BigDecimal(825.05455000),
    risk_3 = new BigDecimal(-52.0000058555);

    BigDecimal ln[] risk_0, risk_1, risk_2,
        risk_3 };
    System.out.println("BigDecimal objects values" +
        " \n'risk_0 '\nvalue : "
        + ln[0"\nlong value : " 
        ln[0].longValue());

    System.out.println("\n'risk_1 '\nvalue : " + ln[1]
            "\nlong value : "
        + ln[1].longValue());

    System.out.println("\n'risk_2 '\nvalue : " + ln[2]
            "\nlong value : "
        + ln[2].longValue());

    System.out.println("\n'risk_3 '\nvalue : " + ln[3]
            "\nlong value : "
        + ln[3].longValue());
  }
}

Download the code

                         

» View all related tutorials
Related Tags: c class object objects integer method type default double decimal gd value return int if biginteger example work bigdecimal values

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 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
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

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

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

Copyright © 2008. All rights reserved.