1. double input = 314159.26;2. NumberFormat nf = NumberFormat.getInstance(Locale.ITALIAN);3. String b;4. /*insert code here*/
b = nf.parse( input );
b = nf.format( input );
b = nf.equals( input );
b = nf.parseObject( input );