Question: Modify Restart.action() to start the the system by reading events from a text file. Use Scanner and an appropriate regular expression. File is called examples1.txt

Modify Restart.action() to start the the system by reading events from a text file. Use Scanner and an appropriate regular expression. File is called examples1.txt but the file is added when we compile from command line "java GreenhouseControls -f examples1.txt"

Alter the code below to read from a file and the contents to addevent

public class Restart extends Event { public Restart(long delayTime, String filename) { super(delayTime); eventsFile = filename; }

public void action() { addEvent(new ThermostatNight(0)); addEvent(new LightOn(2000)); addEvent(new WaterOff(8000)); addEvent(new ThermostatDay(10000)); addEvent(new Bell(9000)); addEvent(new WaterOn(6000)); addEvent(new LightOff(4000)); addEvent(new Terminate(12000)); }

public String toString() { return "Restarting system"; } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!