IN JAVA How can I create a txt file that has the following : The first line of the file is the title for the chart The second line of the file is the units used in the chart The rest of the file contains data values for the chart alternating with the label to print with the value on the preceding line.
IN JAVA How can I create a txt file that has the following : The first line of the file is the title for the chart The second line of the file is the units used in the chart The rest of the file contains data values for the chart alternating with the label to print with the value on the preceding line.
IN JAVA How can I create a txt file that has the following : The first line of the file is the title for the chart The second line of the file is the units used in the chart The rest of the file contains data values for the chart alternating with the label to print with the value on the preceding line.
How can I create a txt file that has the following :
The first line of the file is the title for the chart
The second line of the file is the units used in the chart
The rest of the file contains data values for the chart alternating with the label to print with the
value on the preceding line.
The java program must be able to produce a chart from this data file arranged:
The name of the date file and output file are going to be provided on the command line
The program must check that there are enough command line arguments and stop with a
suitable message if not. The program saves the chart to the output file (2nd command line argument); it may also display the chart to the terminal, but it is not required to.
In addition to the above, accept two additional command line arguments:
The maximum width for the chart (just the bar itself, not including the labels)
The symbol to use for the bars
Transcribed Image Text:Lifetime Gross Box Office of Star Wars Movies
dollars
307 263 857
Episode
209 398 025
IV - A New Hope, 1977
Episode V - The Empire Strikes Back, 1980
252 583 617
Episode VI - Return of the Jedi, 1983
431 088 295
Episode I - The Phantom Menace, 1999
302 191 252
Episode II - Attack of the Clones, 2002.
380_270_577
Episode III - Revenge of the Sith, 2005
936_662_225
Episode VII The Force Awakens, 2015
532_177_324
Rogue One: A Star Wars Story, 2016
620_181_382
Episode VIII - The Last Jedi, 2017
213 767 512
Solo: A Star Wars Story, 2018
515_202_542
Episode IX - The Rise of Skywalker, 2019
Title for the chart
Units for the chart
Each value for the chart is on
one line and the label for that
value is on the next line
Transcribed Image Text:codio@extra-mister:~/workspace$ java ChartMaker_v
_v2 star_wars_box_office.dat swboxoffice.txt
Done. Thanks for using the Chart Maker, v2
codio@extra-mister:~/workspace$ cat swboxoffice.txt
--<<== Lifetime Gross Box Office of Star Wars Movies ==>>--
One '=' represents 23,416,556 dollars
=====
========
=====
(307,263,857) Episode IV - A New Hope, 1977
(209, 398,025) Episode V - The Empire Strikes Back, 1980.
(252, 583,617) Episode VI - Return of the Jedi, 1983.
(431,088,295) Episode I - The Phantom Menace, 1999
(302,191, 252) Episode II - Attack of the Clones, 2002
(380, 270,577) Episode III - Revenge of the Sith, 2005
==========
==========
============
================
======================
======================
=========
==============
======= (936, 662,225) Episode VII - The Force Awakens, 2015.
(532,177,324) Rogue One: A Star Wars Story, 2016
(620, 181, 382) Episode VIII - The Last Jedi, 2017
(213,767,512) Solo: A Star Wars Story, 2018
(515, 202, 542) Episode IX - The Rise of Skywalker, 2019
===========
========
Process by which instructions are given to a computer, software program, or application using code.
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
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.