Write a program that reads movie data from a csv (comma separated values) file and output the data in a formatted table. The program first reads the name of the CSV file from the user. The program then reads the csv file and outputs the contents according to the following requirements: Each row contains the title, rating, and all showtimes of a unique movie. A space is placed before and after each vertical separator (|) in each row. Column 1 displays the movie titles and is left justified with a minimum of 44 characters. If the movie title has more than 44 characters, output the first 44 characters only. Column 2 displays the movie ratings and is right justified with a minimum of 5 characters. Column 3 displays all the showtimes of the same movie, separated by a space. Each row of the csv file contains the showtime, title, and rating of a movie. Assume data of the same movie are grouped in consecutive rows. Ex: If the input of the program is: movies.csv and the contents of movies.csv are: 16:40,Wonders of the World,G 20:00,Wonders of the World,G 19:00,Journey to Space ,PG-13 12:45,Buffalo Bill And The Indians or Sitting Bull's History Lesson,PG 15:00,Buffalo Bill And The Indians or Sitting Bull's History Lesson,PG 19:30,Buffalo Bill And The Indians or Sitting Bull's History Lesson,PG 10:00,Adventures of Lewis and Clark,PG-13 14:30,Adventures of Lewis and Clark,PG-13 19:00,Halloween,R the output of the program is: Wonders of the World | G | 16:40 20:00 Journey to Space | PG-13 | 19:00 Buffalo Bill And The Indians or Sitting Bull | PG | 12:45 15:00 19:30 Adventures of Lewis and Clark | PG-13 | 10:00 14:30 Halloween | R | 19:00 import java.util.Scanner; import java.io.FileInputStream; import java.io.IOException; public class LabProgram {     public static void main(String[] args) {         Scanner scnr = new Scanner(System.in);         System.out.print();         String filename = scnr.nextLine();         try {             FileInputStream fileStream = new FileInputStream(filename);             Scanner fileScanner = new Scanner(fileStream);             String currentTitle = "";             String currentRating = "";             String currentShowtimes = "";             while (fileScanner.hasNextLine()) {                 String line = fileScanner.nextLine();                 String[] parts = line.split(",");                 String showtime = parts[0].trim();                 String title = parts[1].trim();                 String rating = parts[2].trim();                 // Truncate or pad the title as needed                 title = (title.length() > 44) ? title.substring(0, 44) : title;                 if (title.equals(currentTitle)) {                     // Same movie, add showtime                     currentShowtimes += " " + showtime;                 } else {                     // New movie, print previous movie data                     if (!currentTitle.isEmpty()) {                         System.out.printf("%-44s | %-5s | %s\n", currentTitle, currentRating, currentShowtimes);                     }                     // Reset current movie data                     currentTitle = title;                     currentRating = rating;                     currentShowtimes = showtime;                 }             }             // Print last movie data             if (!currentTitle.isEmpty()) {                 System.out.printf("%-44s | %-5s | %s\n", currentTitle, currentRating, currentShowtimes);             }             fileScanner.close();             fileStream.close();         } catch (IOException e) {             System.out.println("File not found or could not be read: " + filename);         }     } }

Np Ms Office 365/Excel 2016 I Ntermed
1st Edition
ISBN:9781337508841
Author:Carey
Publisher:Carey
Chapter6: Managing Multiple Worksheets And Workbooks
Section: Chapter Questions
Problem 2.12CP
icon
Related questions
Question

Write a program that reads movie data from a csv (comma separated values) file and output the data in a formatted table. The program first reads the name of the CSV file from the user. The program then reads the csv file and outputs the contents according to the following requirements:

  • Each row contains the title, rating, and all showtimes of a unique movie.
  • A space is placed before and after each vertical separator (|) in each row.
  • Column 1 displays the movie titles and is left justified with a minimum of 44 characters.
  • If the movie title has more than 44 characters, output the first 44 characters only.
  • Column 2 displays the movie ratings and is right justified with a minimum of 5 characters.
  • Column 3 displays all the showtimes of the same movie, separated by a space.

Each row of the csv file contains the showtime, title, and rating of a movie. Assume data of the same movie are grouped in consecutive rows.

Ex: If the input of the program is:

movies.csv

and the contents of movies.csv are:

16:40,Wonders of the World,G 20:00,Wonders of the World,G 19:00,Journey to Space ,PG-13 12:45,Buffalo Bill And The Indians or Sitting Bull's History Lesson,PG 15:00,Buffalo Bill And The Indians or Sitting Bull's History Lesson,PG 19:30,Buffalo Bill And The Indians or Sitting Bull's History Lesson,PG 10:00,Adventures of Lewis and Clark,PG-13 14:30,Adventures of Lewis and Clark,PG-13 19:00,Halloween,R

the output of the program is:

Wonders of the World | G | 16:40 20:00 Journey to Space | PG-13 | 19:00 Buffalo Bill And The Indians or Sitting Bull | PG | 12:45 15:00 19:30 Adventures of Lewis and Clark | PG-13 | 10:00 14:30 Halloween | R | 19:00

import java.util.Scanner;
import java.io.FileInputStream;
import java.io.IOException;

public class LabProgram {

    public static void main(String[] args) {
        Scanner scnr = new Scanner(System.in);
        System.out.print();
        String filename = scnr.nextLine();

        try {
            FileInputStream fileStream = new FileInputStream(filename);
            Scanner fileScanner = new Scanner(fileStream);

            String currentTitle = "";
            String currentRating = "";
            String currentShowtimes = "";

            while (fileScanner.hasNextLine()) {
                String line = fileScanner.nextLine();
                String[] parts = line.split(",");

                String showtime = parts[0].trim();
                String title = parts[1].trim();
                String rating = parts[2].trim();

                // Truncate or pad the title as needed
                title = (title.length() > 44) ? title.substring(0, 44) : title;

                if (title.equals(currentTitle)) {
                    // Same movie, add showtime
                    currentShowtimes += " " + showtime;
                } else {
                    // New movie, print previous movie data
                    if (!currentTitle.isEmpty()) {
                        System.out.printf("%-44s | %-5s | %s\n", currentTitle, currentRating, currentShowtimes);
                    }
                    // Reset current movie data
                    currentTitle = title;
                    currentRating = rating;
                    currentShowtimes = showtime;
                }
            }

            // Print last movie data
            if (!currentTitle.isEmpty()) {
                System.out.printf("%-44s | %-5s | %s\n", currentTitle, currentRating, currentShowtimes);
            }

            fileScanner.close();
            fileStream.close();
        } catch (IOException e) {
            System.out.println("File not found or could not be read: " + filename);
        }
    }
}

File
Paste
Clipboard
X
A1
1
2
3
4
5
5
7
3
9
Home Insert
Calibri
B
I U
Page Layout
A
B
16:40 Wonders G
20:00 Wonders G
Font
11
19:00 Journey to PG-13
12:45 Buffalo Bi PG
15:00 Buffalo Bi PG
19:30 Buffalo Bi PG
10:00 Adventure PG-13
14:30 Adventure PG-13
19:00 Hallowee R
Formulas
D
A A
S
4:40:00 PM
Data
E
Review
LL
View
Help
ab Wrap Text
Alignment
G
Merge & Center
H
movies [Read-Only] - Excel
Tell me what you want to do
i POSSIBLE DATA LOSS Some features might be lost if you save this workbook in the comma-delimited (.csv) format. To preserve these features, save it in an Excel
x ✓ fix
Custom
$
% ⁹ .00
Number
.00
K
S
F#
|||||
Conditional Format as
Formatting Table
Styles
M
N
Transcribed Image Text:File Paste Clipboard X A1 1 2 3 4 5 5 7 3 9 Home Insert Calibri B I U Page Layout A B 16:40 Wonders G 20:00 Wonders G Font 11 19:00 Journey to PG-13 12:45 Buffalo Bi PG 15:00 Buffalo Bi PG 19:30 Buffalo Bi PG 10:00 Adventure PG-13 14:30 Adventure PG-13 19:00 Hallowee R Formulas D A A S 4:40:00 PM Data E Review LL View Help ab Wrap Text Alignment G Merge & Center H movies [Read-Only] - Excel Tell me what you want to do i POSSIBLE DATA LOSS Some features might be lost if you save this workbook in the comma-delimited (.csv) format. To preserve these features, save it in an Excel x ✓ fix Custom $ % ⁹ .00 Number .00 K S F# ||||| Conditional Format as Formatting Table Styles M N
Input
Your output
Expected output
2:Compare output
Input
Your output
movies.csv
Output differs. See highlights below. Special character legend
Expected output
Wonders of the World
IG
Journey to Space
| PG-13
Buffalo Bill And The Indians or Sitting Bull | PG
Adventures of Lewis and Clark
| PG-13
Halloween
IR
Wonders of the World
|
Journey to Space
| PG-13 | 19:00
Buffalo Bill And The Indians or Sitting Bull || PG | 12:45 15:00 19:30
Adventures of Lewis and Clark
10:00 14:30
PG-13
R
Halloween
19:00
movies1.csv
Wonders of the World
Journey to Space
Wonders of the World
Journey to Space
| 16:40 20:00
| 19:00
| 12:45 15:00 19:30
| 10:00 14:30
19:00
G| 16:40 20:00
Investigating the Shockingly Big World of Am| G
Buffalo Bill And The Indians or Sitting Bull | PG
Adventures of Lewis and Clark
| PG-13
R
Halloween
G
| PG-13 | 19:00
Investigating the Shockingly Big World of Am |
Buffalo Bill And The Indians or Sitting Bull |
Adventures of Lewis and Clark
|
Halloween
| 16:40 20:00 22:15
0/3
19:30 22:15
| 10:30 12:45 15:00
| 10:00 14:30
19:00 21:00
1
| PG-13 | 19:00
G|16:40 20:00 22:15
G19:30 22:15
PG 10:30 12:45 15:00
PG-13 | 10:00 14:30
R 19:00 21:00
▶
Transcribed Image Text:Input Your output Expected output 2:Compare output Input Your output movies.csv Output differs. See highlights below. Special character legend Expected output Wonders of the World IG Journey to Space | PG-13 Buffalo Bill And The Indians or Sitting Bull | PG Adventures of Lewis and Clark | PG-13 Halloween IR Wonders of the World | Journey to Space | PG-13 | 19:00 Buffalo Bill And The Indians or Sitting Bull || PG | 12:45 15:00 19:30 Adventures of Lewis and Clark 10:00 14:30 PG-13 R Halloween 19:00 movies1.csv Wonders of the World Journey to Space Wonders of the World Journey to Space | 16:40 20:00 | 19:00 | 12:45 15:00 19:30 | 10:00 14:30 19:00 G| 16:40 20:00 Investigating the Shockingly Big World of Am| G Buffalo Bill And The Indians or Sitting Bull | PG Adventures of Lewis and Clark | PG-13 R Halloween G | PG-13 | 19:00 Investigating the Shockingly Big World of Am | Buffalo Bill And The Indians or Sitting Bull | Adventures of Lewis and Clark | Halloween | 16:40 20:00 22:15 0/3 19:30 22:15 | 10:30 12:45 15:00 | 10:00 14:30 19:00 21:00 1 | PG-13 | 19:00 G|16:40 20:00 22:15 G19:30 22:15 PG 10:30 12:45 15:00 PG-13 | 10:00 14:30 R 19:00 21:00 ▶
Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Lists
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
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage