Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert String to double in Java

How can I convert a String such as "12.34" to a double in Java?

like image 650
TinyBelly Avatar asked Apr 24 '11 09:04

TinyBelly


Video Answer


1 Answers

You can use Double.parseDouble() to convert a String to a double:

String text = "12.34"; // example String double value = Double.parseDouble(text); 

For your case it looks like you want:

double total = Double.parseDouble(jlbTotal.getText()); double price = Double.parseDouble(jlbPrice.getText()); 
like image 142
WhiteFang34 Avatar answered Sep 23 '22 14:09

WhiteFang34