Java tutorial
//package com.java2s; public class Main { public static int changeToPxOfInt(String str) { return (int) (Float.valueOf(str) * 139); } }