I have a string array in an object which is storing a decimal value.
String [] array = "12345.123456789";
I want it to be formatted as 12345.1234
I tried it with the following but resulted in a Number Format Exception.
BigDecimal value = new BigDecimal(array.toString()).setScale( 4, BigDecimal.ROUND_HALF_UP );
array = ( Object )value.toString();
I am new to java so can anyone please help...

String [] array = "12345.123456789";– Nandkumar Tekale Sep 28 '12 at 12:37