Java tutorial
//package com.java2s; //License from project: Apache License import java.text.DecimalFormat; public class Main { /** * Process inch value. */ public static String toInch(double size) { //Rounding-off method. Remain 2 decimal number. DecimalFormat decimalFormat = new DecimalFormat("#0.00\""); return decimalFormat.format(size); } }