Custom UDF function: Double numeric conversion to high precision bigdecimal__udf function

Source: Internet
Author: User
Import Java.math.BigDecimal;
Import Org.apache.hadoop.hive.ql.exec.UDF;
 * * This method returns the corresponding value of the BigDecimal type of a numeric value of type Double, where the style returned is a string type/public
class udfcastdouble  extends UDF
{public
    String evaluate (double number)
    {  
    	//doublevalue () is the original value for the double, because number is the encapsulated class object of double, is not a value
        BigDecimal db = new BigDecimal (Number.doublevalue ());
        The Toplainstring () method is the string
        Stringnumber = db.toplainstring ()
        , which returns the value of the BigDecimal without the digit segment. return stringnumber;
       
    }
    Use the main method to test public
    static void Main (string[] args) throws Exception
    {
        udfcastdouble o = new Udfcastdouble ();

        System.out.println (O.evaluate (2.001));
        System.out.println (O.evaluate (2.00));
    }
Test results:
2.000999999999999889865875957184471189975738525390625
2

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.