Input Mismatch Exception (i think its a dumb mistake)

189 Views Asked by At

I'm getting an InputMismatchException when I press the "next" button. Here is the code for the panel that has the button:

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class PanelSampleYard extends JPanel
{
    private JLabel label;
    private DisplaySampleYard display;
    int times = 0;
    public PanelSampleYard()
    {
        setLayout(new BorderLayout());
        setPreferredSize(new Dimension(200, 125));

        label = new JLabel("Green and Grow Mowing Company", SwingConstants.CENTER);
        add(label, BorderLayout.NORTH);

        display = new DisplaySampleYard();
        add(display, BorderLayout.CENTER);

        JPanel subpanel = new JPanel();
        subpanel.setLayout(new FlowLayout());
        JButton next = new JButton("Next");
        JButton quit = new JButton("Quit");
        next.addActionListener(new Listener1());
        quit.addActionListener(new Listener2());
        subpanel.add(next);
        subpanel.add(quit);
        add(subpanel, BorderLayout.SOUTH);
    }
    private class Listener1 implements ActionListener
    {
        public void actionPerformed(ActionEvent e)
        {
            display.next(display.contents(times));
            times++;
        }
    }
    private class Listener2 implements ActionListener
    {
        public void actionPerformed(ActionEvent e)
        {
            System.exit(0);
        }
    }
} 

And the code for the display that is inside the panel:

import javax.swing.*;
import java.awt.*;
import java.util.*; 
public class DisplaySampleYard extends JPanel
{
    private JLabel label;
    private JTextField last, first, size, cost, total;
    double sum = 0;
    int index = 0;
    public DisplaySampleYard()
    {
        setLayout(new GridLayout(5,2));
        last = new JTextField("");
        add(new JLabel("Last Name:"));
        add(last);
        first = new JTextField("");
        add(new JLabel("First Name:"));
        add(first);
        size = new JTextField("");
        add(new JLabel("Lawn Size:"));
        add(size);
        cost = new JTextField("");
        add(new JLabel("Total Cost:"));
        add(cost);
        total = new JTextField("");
        add(new JLabel("Running Total:"));
        add(total);
    }
    public void next(Customer c)
    {
        last.setText(c.getLastName()+"");
        first.setText(c.getFirstName()+"");
        size.setText(c.getSize()+"");
        cost.setText(c.getCost()+"");
        sum = sum + c.getCost();
        total.setText(""+sum);
    }
    public Customer contents(int index)
    {
        Scanner infile = new Scanner("greenGrow.txt");
        int reps = infile.nextInt();
        Customer[] array = new Customer[reps];
        for(int x = 0; x<reps; x++)
        {
            array[x].setLastName(infile.next());
            array[x].setFirstName(infile.next());
            array[x].setSize(infile.nextInt());
        }
        return array[index];
    }
}

The data file that the Scanner is reading from contains:

5
Jeffers
Tom
5000
Smith
Sam
10000
Nevar
Tina
15000
Kim
Lisa
20000
Black
Kim
30000

What's wrong with my code? Thanks in advance!

P.S. There are a few more classes, but I don't think they are causing this problem

1

There are 1 best solutions below

0
On

When you use Scanner read file, you should construct by File type parameter, it will scan values from the specified file. like:

new Scanner(new File("greenGrow.txt"));

If construct by String, the Scanner will scan values from the specified String