Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

since i pass my value to another class...i need to change my double value to string..

if((e.getSource() == jBook)) {


                String name = jlbName.getText ();
                String date = jlbDateProduce.getText ();
                String time = jr1.getText ();
                int number = (Integer.parseInt(jtfNoOfTicket.getText().trim()));
                String total = jlbTotal.getText ();
                String price = jlbPrice.getText ();

                //Passing
                ticketReservation frame = new ticketReservation(name, date, time, price, total, String.valueOf(number));

in another class...i need to use that value to count the total...is there any way to convert string back to double...~TQ

share|improve this question

4 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());
share|improve this answer
so my coding should be double total = Double.parseDouble(string);? – TinyBelly Apr 24 '11 at 9:20
@TinyBelly: yeah it looks like you want: double total = Double.parseDouble(jlbTotal.getText()); – WhiteFang34 Apr 24 '11 at 9:22
sry for asking.. so if i put jlbTotal = new JLabel ("The total " + total) i need to remove "The total" so i can get the value of total? i having a problem with this it "Exception in thread "AWT-EventQueue-0" java.lang.NumberFormatException: For input string: "total Total : RM24.00"" – TinyBelly Apr 24 '11 at 9:55
@TinyBelly: you need to extract the part of the text from the string that you want to parse for the double. Here's one way you could do it for your case, though I can't guarantee it will work for everything: double total = Double.parseDouble(jlbTotal.getText().replaceAll("[^0-9.]", "")); - this basically replaces all characters that aren't a number or . to nothing, leaving only the number and decimal point to be parsed. – WhiteFang34 Apr 24 '11 at 10:01
1  
using double for price calculations is not advisable. – Bozho Apr 24 '11 at 10:13
show 1 more comment
double d = Double.parseDouble(aString);

This should convert the string aString into the double d.

share|improve this answer
aString is refer to what? can u help me explain more? – TinyBelly Apr 24 '11 at 9:21
1  
aString is just a string. More specifically the string you want to convert to a number. – andvin Apr 24 '11 at 10:09

Use new BigDecimal(string). This will guarantee proper calculation later.

As a rule of thumb - always use BigDecimal for sensitive calculations like money.

Example:

String doubleAsString = "23.23";
BigDecimal price = new BigDecimal(doubleAsString);
BigDecimal total = price.plus(anotherPrice);
share|improve this answer
ooo...sry coz im newbie, can u give an example for that? TQ – TinyBelly Apr 24 '11 at 9:32
@TinyBelly see updated – Bozho Apr 24 '11 at 9:38
double d=Double.parseDouble("23.1121245551");

This line will convert your string value into the double data type.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.