Results 1 to 6 of 6
Thread: convert String to Double
- 10-21-2008, 10:53 PM #1
Member
- Join Date
- Oct 2008
- Posts
- 2
- Rep Power
- 0
- 10-21-2008, 11:10 PM #2
Please explain.It doesn't work:
- 10-21-2008, 11:21 PM #3
Works for me...
I tried the following code (shamefully a cut & Paste) and it worked fine for me:
So...Java Code:import java.io.*; import java.lang.*; public class StringToDouble{ public static void main (String[] args) throws IOException{ BufferedReader bff= new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter numeric type string value:"); String num = bff.readLine(); try{ double d = Double.valueOf(num.trim()).doubleValue(); System.out.println("double d = " + d); } catch (NumberFormatException e){ System.out.println("NumberFormatException: " + e.getMessage()); } } }
- let's see your code
- what is the problem you're seeing?
CJSLChris S.
Difficult? This is Mission Impossible, not Mission Difficult. Difficult should be easy.
- 10-21-2008, 11:54 PM #4
Member
- Join Date
- Oct 2008
- Posts
- 2
- Rep Power
- 0
Than you! I've found it :)
now it works:
n1 = Double.valueOf(a.getString()).doubleValue();
I had only:
n1 = Double.valueOf(a).doubleValue(); so that was the problem.
Thank for your help!!Last edited by azurovyhrosik; 10-21-2008 at 11:56 PM.
- 10-22-2008, 01:32 AM #5
That's great, now...
Great!!! Now mark your post as solved.
CJSLChris S.
Difficult? This is Mission Impossible, not Mission Difficult. Difficult should be easy.
- 10-22-2008, 02:46 AM #6
Similar Threads
-
How do I convert a decimal value to hexadecimal with double precision (64 bit)
By SKaur in forum New To JavaReplies: 7Last Post: 01-12-2008, 09:02 PM -
Converting String to Double
By srini in forum New To JavaReplies: 1Last Post: 12-24-2007, 08:03 PM -
convert string to a double?
By javaMike in forum Advanced JavaReplies: 2Last Post: 11-27-2007, 03:10 AM -
type mismatch: cannot convert from double to float
By bugger in forum New To JavaReplies: 2Last Post: 11-16-2007, 01:24 PM -
Help with convert a double type number
By trill in forum New To JavaReplies: 1Last Post: 08-06-2007, 08:48 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks