Java int type convert byte to megabyte

Description

Java int type convert byte to megabyte


//package com.demo2s;

import java.text.DecimalFormat;

public class Main {
    public static void main(String[] argv) throws Exception {
        int b = 123123;
        System.out.println(b2mb(b));
    }//ww  w  .j av  a2  s. c  o m

    public static float b2mb(int b) {
        DecimalFormat decimalFormat = new DecimalFormat(".00");
        String MB = decimalFormat.format((float) b / 1024 / 1024);
        return Float.valueOf(MB);
    }
}



PreviousNext

Related