Java Byte Value Format bytesToMB(long sizeInBytes)

Here you can find the source of bytesToMB(long sizeInBytes)

Description

bytes To MB

License

Apache License

Declaration

public static long bytesToMB(long sizeInBytes) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static long bytesToMB(long sizeInBytes) {
        return sizeInBytes / (1024 * 1024);
    }//from   ww w .  jav  a  2 s . c  o m
}

Related

  1. bytesToHuman(long size)
  2. bytesToHumanReadable(int bytes)
  3. bytesToKBytes(long bytes)
  4. bytesToMagaBytes(long bytes)
  5. BytesToMB(long kb)
  6. bytesToMBString(long bytes)
  7. bytesToMegabytes(long bytes)
  8. bytesToMegaBytes(long bytes)
  9. byteToHuman(long bytes, boolean si)