BigDecimal to string

后端 未结 8 1658
感情败类
感情败类 2020-12-13 08:06

I have a BigDecimal object and i want to convert it to string. The problem is that my value got fraction and i get a huge number (in length) and i only need the original num

相关标签:
8条回答
  • 2020-12-13 08:39

    By using below method you can convert java.math.BigDecimal to String.

       BigDecimal bigDecimal = new BigDecimal("10.0001");
       String bigDecimalString = String.valueOf(bigDecimal.doubleValue());
       System.out.println("bigDecimal value in String: "+bigDecimalString);
    

    Output:
    bigDecimal value in String: 10.0001

    0 讨论(0)
  • 2020-12-13 08:42
    // Convert BigDecimal number To String by using below method //
    
    public static String RemoveTrailingZeros(BigDecimal tempDecimal)
    {
        tempDecimal = tempDecimal.stripTrailingZeros();
        String tempString = tempDecimal.toPlainString();
        return tempString;
    }
    

    // Recall RemoveTrailingZeros
    BigDecimal output = new BigDecimal(0);
    String str = RemoveTrailingZeros(output);
    
    0 讨论(0)
  • 2020-12-13 08:44

    The BigDecimal can not be a double. you can use Int number. if you want to display exactly own number, you can use the String constructor of BigDecimal .

    like this:

    BigDecimal bd1 = new BigDecimal("10.0001");
    

    now, you can display bd1 as 10.0001

    So simple. GOOD LUCK.

    0 讨论(0)
  • 2020-12-13 08:44

    If you just need to set precision quantity and round the value, the right way to do this is use it's own object for this.

    BigDecimal value = new BigDecimal("10.0001");
    value = value.setScale(4, RoundingMode.HALF_UP);
    System.out.println(value); //the return should be "10.0001"
    

    One of the pillars of Oriented Object Programming (OOP) is "encapsulation", this pillar also says that an object should deal with it's own operations, like in this way:

    0 讨论(0)
  • 2020-12-13 08:50

    To get exactly 10.0001 you need to use the String constructor or valueOf (which constructs a BigDecimal based on the canonical representation of the double):

    BigDecimal bd = new BigDecimal("10.0001");
    System.out.println(bd.toString()); // prints 10.0001
    //or alternatively
    BigDecimal bd = BigDecimal.valueOf(10.0001);
    System.out.println(bd.toString()); // prints 10.0001
    

    The problem with new BigDecimal(10.0001) is that the argument is a double and it happens that doubles can't represent 10.0001 exactly. So 10.0001 is "transformed" to the closest possible double, which is 10.000099999999999766941982670687139034271240234375 and that's what your BigDecimal shows.

    For that reason, it rarely makes sense to use the double constructor.

    You can read more about it here, Moving decimal places over in a double

    0 讨论(0)
  • 2020-12-13 08:52

    Your BigDecimal doesn't contain the number 10.0001, because you initialized it with a double, and the double didn't quite contain the number you thought it did. (This is the whole point of BigDecimal.)

    If you use the string-based constructor instead:

    BigDecimal bd = new BigDecimal("10.0001");
    

    ...then it will actually contain the number you expect.

    0 讨论(0)
提交回复
热议问题