Here you can find the source of String2BigDecimal(String str)
public static BigDecimal String2BigDecimal(String str)
//package com.java2s; //License from project: Open Source License import java.math.BigDecimal; public class Main { public static BigDecimal String2BigDecimal(String str) { return BigDecimal.valueOf(Double.parseDouble(str)); }/*from www .j a v a2 s .com*/ }