View Single Post
  #6 (permalink)  
Old 04-21-2008, 02:23 AM
sukatoa's Avatar
sukatoa sukatoa is offline
Senior Member
 
Join Date: Jan 2008
Location: Cebu City, Philippines
Posts: 526
sukatoa is on a distinguished road
Send a message via Yahoo to sukatoa
Code:
String data[] = {"1.1","2.2","3.3","4.4"}; Double converted[] = new Double[5]; int x=0; while(x<5){ converted[x] = Double.parseDouble(data[x]);x++; }
Try to have an experiment on it....

regards,
sukatoa
Reply With Quote