Java BigDecimal from toBigDecimal(String s, int scale)

Here you can find the source of toBigDecimal(String s, int scale)

Description

to Big Decimal

License

Apache License

Declaration

public static BigDecimal toBigDecimal(String s, int scale) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.math.*;

public class Main {
    public static BigDecimal toBigDecimal(String s, int scale) {
        try {//ww w  .  j a va2  s  .co m
            return new BigDecimal(new BigInteger(s.trim()), scale);
        } catch (NumberFormatException e) {
            return null;
        }
    }

    /**
     * Restiutisce la stringa s senza spazi iniziali e finali
     * Se s e' null o stringa vuota, restituisce una stringa di lunghezza 0
     */
    public static String trim(String s) {
        return s == null || s.trim().equals("") ? "" : s.trim();
    }
}

Related

  1. toBigDecimal(Object value)
  2. toBigDecimal(Object value)
  3. toBigDecimal(String _str)
  4. toBigDecimal(String s)
  5. toBigDecimal(String s)
  6. toBigDecimal(String str)
  7. toBigDecimal(String value)
  8. toBigDecimal(String value)
  9. toBigDecimal(String value)