Question: Dodo in java do in java please. DO IN JAVA PLEASE ----------------------------------------------------------------------------------------------- DATE CLASS public class Date { private int day; private int month; private

Dodo in java Dodo in java do in java please. DO IN JAVA PLEASE -----------------------------------------------------------------------------------------------do in java please. DO IN JAVA PLEASE

-----------------------------------------------------------------------------------------------

DATE CLASS

public class Date { private int day; private int month; private int year; public Date() { this.day = 01; this.month = 01; this.year = 1970; } public Date(int day, int month, int year) { this.day = day; this.month = month; this.year = year; } public Date(String month, int day, int year) { this.day = day; if (month.equalsIgnoreCase("January")) this.month = 1; else if (month.equalsIgnoreCase("February")) this.month = 2; else if (month.equalsIgnoreCase("March")) this.month = 3; else if (month.equalsIgnoreCase("April")) this.month = 4; else if (month.equalsIgnoreCase("May")) this.month = 5; else if (month.equalsIgnoreCase("June")) this.month = 6; else if (month.equalsIgnoreCase("July")) this.month = 7; else if (month.equalsIgnoreCase("August")) this.month = 8; else if (month.equalsIgnoreCase("September")) this.month = 9; else if (month.equalsIgnoreCase("October")) this.month = 10; else if (month.equalsIgnoreCase("November")) this.month = 11; else if (month.equalsIgnoreCase("December")) this.month = 12; this.year = year; } public Date(int day, int year) { super(); this.year = year; if (day  31 && day  59 && day  90 && day  120 && day  151 && day  181 && day  212 && day  243 && day  273 && day  273 && day  334 && day  10 && day  10) { return "( 0" + month + "/" + day + "/" + year + " )"; } else { return "( " + month + "/" + day + "/" + year + " )"; } } public String convertInSecondFormat() { if (month  10 && day  10) { return "( " + getMonthName() + "/" + day + "/" + year + " )"; } else { return "( " + getMonthName() + "/" + day + "/" + year + " )"; } } public String convertInThirdFormat() { return "(" + getTotalDay() + " " + year + ")"; } @Override public String toString() { return convertInFirstFormat() + " " + convertInSecondFormat() + " " + convertInThirdFormat(); } } 

------------------------------------------------------------------------------------------------

TEST DATE

import java.util.Scanner; public class Date { public static void main(String[] args) { Scanner scan = new Scanner(System.in); Date date = null; int option; do { System.out.println("Enter date " + "1. (MM/DD/YYYY) " + "2. (Month Name, DD, YYYY) " + "3. (DDD YYYY) " + "4. Exit"); System.out.print("Please choose any option: "); option = scan.nextInt(); scan.nextLine(); switch (option) { case 1: System.out.print("Enter day: "); int day = scan.nextInt(); System.out.print("Enter month: "); int month = scan.nextInt(); System.out.print("Enter year: "); int year = scan.nextInt(); date = new Date(day, month, year); System.out.println("Your date is: "); System.out.println(date.toString()); break; case 2: System.out.print("Enter Month name: "); String monthName = scan.nextLine(); System.out.print("Enter day: "); day = scan.nextInt(); System.out.print("Enter year: "); year = scan.nextInt(); date = new Date(monthName, day, year); System.out.println("Your date is: "); System.out.println(date.toString()); break; case 3: System.out.print("Enter days: "); int days = scan.nextInt(); System.out.print("Enter year: "); year = scan.nextInt(); date = new Date(days, year); System.out.println("Your date is: "); System.out.println(date.toString()); break; case 4: System.out.println("Thank you, Bye!"); break; default: System.out.println("Invalid option please try again!"); break; } } while (option != 4); scan.close(); } }

programming language Java For this programming assignment you will be re-using portions of your code from the last assignment as a starting point. You are to create a new DateFileTest class that uses the existing Date Class for the following: Instead of bringing in dates from a user, you will be bringing in dates from a text file. You should use the existing Date class to create date objects from file inputs The data in the file is provided in alternating formats in order from MM/DD/YYYY to Month name, DD, YYYY (just those two formats to simplify the input handling and verification). Spaces are used in the file as delimiters between integers and strings in the date format. You will use the file provided here DAtes in multiple formats. 8 17 1943 April 1 1985 4 27 2010 September 27 2005 12 13 2001 June 5 1075 11 25 1974 December 11 2004 21 14 1980 1. Your code is to handle exceptions for the following situations; the file is not found or can't be opened, in which case the program informs the user and ends. the month is not a valid month (between 1-12), a try/catch block the year is not a valid year (assume between 1800-2020 is valid, using a try/catch block) the entry is not a valid month name (must start with a capital and be spelled correctly as a string) If any of these exceptions occur, your program must disregard that specific date, output an error message to the display, NOT write that specific date to the file, and continue to move on to process the rest of the data in the file Your program will create a new text file and write dates out to that file. You will write out all 3 formats (with appropriate / and, delimiters) to the file for each date read in from the file. Your program files must include a program header that includes your name, course discussion section, and program description. Well structured and commented code are expected. Your submission must include all program files, output text file, and execution screenshots showing your messages from error handling. Submissions without all the files will not receive a grade and no late submissions will be accepted

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!