Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
118 views
in Technique[技术] by (71.8m points)

java - 在Java中将String转换为double(Convert String to double in Java)

如何在Java中将String例如"12.34"转换为double "12.34"

  ask by TinyBelly translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

(您可以使用Double.parseDouble()String转换为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());

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...