Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
static long convertMemInfoToBytes(String memInfo, String notation, int notationMultiplier) {
return Long.parseLong(memInfo.split(notation)[0].trim()) * ((long) notationMultiplier);
}
}