I am getting Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException error for SportsBus and Party Bus instruction: WorkArea is then to be adjusted to implement the method loadBuses. The starting code includes the skeleton of the method, which includes the method header and the name of the file to be accessed. . Complete the method loadBuses(String bfile) that reads information bus information from a file (bfile contains the filename) . Each row in the file should trigger the creation of an instance of bus or an appropriate subclass, according to the data in table 1. All buses created should be added to an arraylist. LoadBuses should return the populated arraylist. look at image uploaded it SportsBus and PartyBus are giving index out of bound erros please fix public ArrayList loadBuses(String vfile ) { Scanner bscan = null; ArrayList blist = new ArrayList(); try { bscan = new Scanner(new File(vfile)); while(bscan.hasNext()) { String [] nextLine = bscan.nextLine().split(" "); switch(nextLine.length) { case 4: //regular { Bus b = new Bus(nextLine[0], Integer.parseInt(nextLine[1]),Integer.parseInt(nextLine[2]),Integer.parseInt(nextLine[3]), mny); blist.add(b); break; } case 5: //TrainingBus { Bus b = new TrainingBus(new Bus(nextLine[0], Integer.parseInt(nextLine[1]), Integer.parseInt(nextLine[2]), Integer.parseInt(nextLine[3]), Ministry.valueOf(nextLine[4])), 2); blist.add(b); break; } case 6: //SportsBus { Bus b = new Bus(nextLine[0], Integer.parseInt(nextLine[1]), Integer.parseInt(nextLine[2]), Integer.parseInt(nextLine[3]), Ministry.valueOf(nextLine[4])); SportsBus sb = new SportsBus(b, Integer.parseInt(nextLine[5]), Integer.parseInt(nextLine[6])); blist.add(sb); break; } case 7: //PartyBus { Bus b = (new SportsBus(new Bus(nextLine[1], Integer.parseInt(nextLine[2]), Integer.parseInt(nextLine[3]), Integer.parseInt(nextLine[4]), new Ministry(nextLine[5])), Integer.parseInt(nextLine[6]), Integer.parseInt(nextLine[7]))); blist.add(b); break; } } } bscan.close(); }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
I am getting Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException error for SportsBus and Party Bus instruction: WorkArea is then to be adjusted to implement the method loadBuses. The starting code includes
the skeleton of the method, which includes the method header and the name of the file to be
accessed. . Complete the method loadBuses(String bfile) that reads information bus information from a
file (bfile contains the filename) . Each row in the file should trigger the creation of an
instance of bus or an appropriate subclass, according to the data in table 1. All buses created
should be added to an arraylist. LoadBuses should return the populated arraylist.  look at image uploaded it SportsBus and PartyBus are giving index out of bound erros please fix
 
   
public ArrayList<Bus> loadBuses(String vfile )
    {
        Scanner bscan = null;
        ArrayList<Bus> blist = new ArrayList<Bus>();
        try
        {
            bscan  = new Scanner(new File(vfile));
            while(bscan.hasNext())
            {
                String [] nextLine = bscan.nextLine().split(" ");
                switch(nextLine.length)
                {
                case 4: //regular
                {
                    Bus b = new  Bus(nextLine[0], Integer.parseInt(nextLine[1]),Integer.parseInt(nextLine[2]),Integer.parseInt(nextLine[3]), mny);
                    blist.add(b);
                    break;
                }
                case 5: //TrainingBus
                {
                    Bus b = new TrainingBus(new Bus(nextLine[0], Integer.parseInt(nextLine[1]), Integer.parseInt(nextLine[2]), Integer.parseInt(nextLine[3]), Ministry.valueOf(nextLine[4])), 2);

                blist.add(b);
                    break;
                }

                case 6: //SportsBus
    {
        Bus b = new Bus(nextLine[0], Integer.parseInt(nextLine[1]), Integer.parseInt(nextLine[2]), Integer.parseInt(nextLine[3]), Ministry.valueOf(nextLine[4]));
        SportsBus sb = new SportsBus(b, Integer.parseInt(nextLine[5]), Integer.parseInt(nextLine[6]));
        blist.add(sb);
        break;
    }


               
               
                case 7: //PartyBus
                {
                    Bus b = (new SportsBus(new Bus(nextLine[1], Integer.parseInt(nextLine[2]), Integer.parseInt(nextLine[3]), Integer.parseInt(nextLine[4]), new Ministry(nextLine[5])), Integer.parseInt(nextLine[6]), Integer.parseInt(nextLine[7])));
                    blist.add(b);
                    break;
                }

                }
            }
            bscan.close();
        }
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Concept of Threads
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education