I want to parse string to double but with scientific notation. Please provide ant solution for solving this problem.
String str="123434344";
Double db=Double.parseDouble(str);
System.out.println("Value:"+db);
This is my output: Value:1.23434344E8 but i want to this double like this: 123434344.00
どうすれば可能か、これに対する解決策を教えてください。どうもありがとう。!!