Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

public class DrinkMenuFile { public static void main ( String [ ] args ) { String menuData = getMenuData ( menu . txt

public class DrinkMenuFile {
public static void main(String[] args){
String menuData = getMenuData("menu.txt");
System.out.println(menuData);
File outputFile = new File("output.txt");
writeMenuText(outputFile, menuData);
}
// Method to read and parse the text data from the file.
// Returns a multiline String with the menu data formatted as shown in the
// assignment instructions document.
public static String getMenuData(String fileName){
// Use StringBuilder to assemble multiline string efficiently
StringBuilder menuString = new StringBuilder();
try{
Scanner fileScanner = new Scanner(new File(fileName));
while(fileScanner.hasNextLine()){
String line = fileScanner.nextLine();
menuString.append(line +"
");
}
fileScanner.close();
} catch(InputMismatchException e){
System.out.println("Error reading file:" + e.getMessage());
}
return menuString.toString();
}
// Method to write the formatted menu to a text file.
public static void writeMenuText(File outputFile, String menuText){
// If output file doesn't already exist, create it
if(!outputFile.exists()){
try{
outputFile.exists();
} catch(IOException e){
System.out.println("Error creating file:" + e.getMessage());
}
}
try{
PrintWriter writer = new PrintWriter(outputFile);
writer.print(menuText);
writer.close();
} catch (FileNotFoundException e){
System.out.println("File not Found: "+ e.getMessage());
}
/* If file exists or has just been created, write data to the file
* using a PrintWriter. Include appropriate try & catch blocks.
* The catch block(s) should print out a message for the user indicating the
* problem so that the program doesn't terminate with a stacktrace if
* an exception is thrown.
*/
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions