com.testvagrant.mdb.utils.Commons Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optimusmonitor Show documentation
Show all versions of optimusmonitor Show documentation
The Java Client provides access to Optimus cloud for all java based projects.
The newest version!
package com.testvagrant.mdb.utils;
import org.apache.commons.lang3.math.NumberUtils;
import java.text.DecimalFormat;
public class Commons {
public static Double convertToMB(String dataInKB) {
DecimalFormat decimalFormat = new DecimalFormat("0.00");
try {
Integer data = NumberUtils.toInt(dataInKB);
double dataInDouble = data/1024.0;
return dataInDouble;
} catch (Exception e) {
}
throw new RuntimeException("Unable to convert "+dataInKB+" to MB");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy