Trying to Display text input in a java a JFrame window

1k Views Asked by At

I'm using JCreator Pro. I'm trying to get information entered in the textfields to display and calculate the selling price of used cars. The window looks like this:

enter image description here

When I click display, I want the information to appear on the bottom half of the window (car make and model, year of manufacturing, sale price) But when I do click it, all I get are these lines of text in the General output window and I can't make out what's wrong. My code compiles without any errors.

Here's my main class for reference:

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class MIT141674CarDetailsTest extends JFrame implements ActionListener {
    MIT141674Car car;

    JTextField jtfMakeModel, jtfYear, jtfPurchPrice;

    JButton jbtnDisplay, jbtnClear;

    JLabel jlblMakeModel, jlblYear, jlblSellPrice;

    public MIT141674CarDetailsTest() {
        setSize(500, 210);
        setLocationRelativeTo(null);
        setTitle("Purchased car details");

        setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

        setLayout(new GridLayout(7, 2));

        // input
        add(new JLabel(" Enter car make and model: "));
        jtfMakeModel = new JTextField();
        add(jtfMakeModel);

        add(new JLabel(" Enter year of manufacturing: "));
        jtfYear = new JTextField();
        add(jtfYear);

        add(new JLabel(" Enter purchase price: "));
        jtfPurchPrice = new JTextField();
        add(jtfPurchPrice);

        // buttons
        jbtnDisplay = new JButton("Display");
        add(jbtnDisplay);
        jbtnDisplay.addActionListener(this);

        jbtnClear = new JButton("Clear all");
        add(jbtnClear);
        jbtnClear.addActionListener(this);

        // display car
        add(new JLabel(" Car make and model: "));
        jlblMakeModel = new JLabel("");
        add(jlblMakeModel);

        add(new JLabel(" Year of manufacturing: "));
        jlblYear = new JLabel("0000");
        add(jlblYear);

        add(new JLabel(" Sale price: "));
        jlblSellPrice = new JLabel("$0.00");
        add(jlblSellPrice);
    }

    public static void main(String[] args) {
        MIT141674CarDetailsTest carWin = new MIT141674CarDetailsTest();
        carWin.setVisible(true);
    }

    public void actionPerformed(ActionEvent ae) {
        String str = ae.getActionCommand();

        if (str.equals("Display")) {
            int carYear = Integer.parseInt(jtfYear.getText());
            if (carYear >= 2009) {

                double pPrice = Double.parseDouble(jtfPurchPrice.getText());
                if (pPrice > 0) {

                    car = new MIT141674Car(jtfMakeModel.getText(),
                            carYear, pPrice);

                    jlblMakeModel.setText(car.getMakeModel());
                    jlblYear.setText(Integer.toString(car.getYear()));
                    jlblSellPrice
                            .setText(Double.toString(car.getSellingPrice()));

                } else
                    // pPrice <=0 - invalid
                    JOptionPane.showMessageDialog(null,
                            "Invalid purchase price, please re-enter");
            } // carYear <=2009
            else
                // invalid carYear
                JOptionPane.showMessageDialog(null,
                        "Invalid year of manufacturing, please re-enter");
        } // if display
        else
        // not Display button, then check if it's Clear all button
        if (str.equals("Clear all")) {
            // remove text from all text fields
            jtfMakeModel.setText("");
            jtfYear.setText("");
            jtfPurchPrice.setText("");

            // clear labels
            jlblMakeModel.setText("");
            jlblYear.setText("0000");
            jlblSellPrice.setText("$0.00");
        }
    } // actionPerformed
} // end of class

Can anyone help me and tell me what is wrong?

EDIT: I have partially solved my problem by doing what @Exbury mentioned by changing

    car = new MIT141674Car (jtfMakeModel.getText(), car.getYear(), car.getSellingPrice());

to

    car = new MIT141674Car (jtfMakeModel.getText(), carYear, pPrice);

But now I've found that the year entered only displays if I enter 2009, any other years entered after 2009 comes up as 0.

2

There are 2 best solutions below

0
On

Giving one class a getter/accessor method that extracts the desired information of JTextField and giving the other class a setter/mutator method that allows outside objects to inject the desired information, here to set the text of its JLabel

3
On

While creating car object you are using same car reference (null) in constructor Change this to

car = new MIT141674Car (jtfMakeModel.getText(), car.getYear(), car.getSellingPrice());`

to

car = new MIT141674Car (jtfMakeModel.getText(), carYear, pPrice);