Double customsValue =
new Double( customsValueText.
substring(0,customsValueText.length() -2).concat("." +
customsValueText.
substring(customsValueText.length() - 2)));
All I was doing is taking a value that I receive in the form of a
String and making it a Double. BUT, the last two digits in the string represent the decimal places.
Is there a better way to do it than I did?