Here you can find the source of printPositiveDecimal(BigDecimal value)
public static String printPositiveDecimal(BigDecimal value)
//package com.java2s; /*/* w w w . j a va 2 s .co m*/ * Copyright 2015-2016 OpenEstate.org. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.math.BigDecimal; import javax.xml.bind.DatatypeConverter; public class Main { public static String printPositiveDecimal(BigDecimal value) { // OpenImmo specifies positive decimal values including 0 if (value == null || value.compareTo(BigDecimal.ZERO) < 0) throw new IllegalArgumentException("Can't print positive decimal value!"); return printDecimal(value.setScale(2, BigDecimal.ROUND_HALF_UP)); } public static String printDecimal(BigDecimal value) { if (value == null) throw new IllegalArgumentException("Can't print double value!"); else return DatatypeConverter.printDecimal(value); } }