Java tutorial
//package com.java2s; //License from project: Apache License import java.math.BigDecimal; public class Main { public static String getDecimalPrice(float price) { BigDecimal bigDecimal = new BigDecimal(price); return bigDecimal.setScale(1, BigDecimal.ROUND_DOWN).toString(); } }