Number format parsing issues
If you are dealing with converting string to numbers particularly a currency with locale specific formatting (surch as $10,300.83-) then the default parseInt/parseFloat in Java will not help as it would throw a NumberFormatException. This article “Resolving NumberFormat’s parsing issues” in IBM developerWorks describes how the class java.text.NumberFormat can be used effectively to solve locale specific conversions.












