Purchase Solution

Java console date transform program

Not what you're looking for?

Ask Custom Question

Need assistance with driver class and Date class. This is what I have so far for the driver class.
In the driver class, include a loop that repeatedly:
?Asks the user to enter a date or "q" to quit.
?If the entry is not "q", instantiate a Date object.
?If the error variable is null:
oPrint the date using numeric format.
oPrint the date using alphabetic format.
?Otherwise, print the value of the error variable.

Date objects should store the date in two int instance variables: day and month, and it should include the String instance variable, error, initialized with null.
Implement a 1-parameter Date constructor that receives a dateStr string parameter and performs complete error checking on the given dateStr value. The Date constructor is the entity that's responsible for date error checking. That way, if a Date object is instantiated and if there are no errors, then you're guaranteed that the Date object holds a legitimate date value. If any kind of error occurs, change the value of the error instance variable to a non-null string value, using an appropriate concatenation of a string constant, input substring, and/or API exception message.
Constructors use the same exception handling rules as methods: In a try block, include the parsing of the month and day substrings and other error-checking logic that will not work if parsing fails.
Take into account the actual number of days in each month, but assume that there are always 28 days in February.
To extract day and month numbers from the given date string, use String's indexOf method to find the location of the slash character, and String's substring method to extract month and day substrings from the input string.
Include a method for printing the date with a numeric format. Use the zero-pad flag in a printf method call to get exactly two digits for each month and day.
Include a method for printing the date with an alphabetic format.
Include a getError method which returns the value of the error instance variable.

Sample session:

Enter a date in the form mm/dd ("q" to quit): 5/2
05/02
May 2
Enter a date in the form mm/dd ("q" to quit): 05/02
05/02
May 2
Enter a date in the form mm/dd ("q" to quit): 52
Invalid date format - 52
Enter a date in the form mm/dd ("q" to quit): 5.0/2
Invalid format - For input string: "5.0"
Enter a date in the form mm/dd ("q" to quit): 13/2
Invalid month - 13
Enter a date in the form mm/dd ("q" to quit): 2/x
Invalid format - For input string: "x"
Enter a date in the form mm/dd ("q" to quit): 2/30
Invalid day - 30
Enter a date in the form mm/dd ("q" to quit): 2/28
02/28
February 28
Enter a date in the form mm/dd ("q" to quit): q

Purchase this Solution

Solution Summary

Class Date stores date values and prints out the date in either a pure numeric format or a name (words) and number format. Class DateDriver is the driving class that contains main() function and calls the Date class. All code compiled and tested.

Solution Preview

Attached are two java files driver and the date class. The DateDriver class in the main driving class which contains the main function. Date class is the class that accepts string date in it's constructor and will parse and transform date. I have compiled and tested source in NetBeans.

You will also find the java source code below. You can compile and run the code if you have java sdk as follows:

To compile:

javac.exe -g DateDriver.java
javac.exe -g Date.java

Then to run:
java DateDriver

Below is the source:

DateDriver.java file content:

import java.util.Scanner;

public class DateDriver
{

public static void main(String[] args)
{
Scanner stdIn = new Scanner(System.in);
String value;
String error = null;
boolean quit;

do {
System.out.print("Enter a date in the form mm/dd ('q' to quit): ");
value = stdIn.next();
if (!value.equalsIgnoreCase("q")) {
Date dt = new Date(value);
error = dt.getError();
if (error!=null)
{
System.out.println(error);
}
...

Purchase this Solution


Free BrainMass Quizzes
Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

Javscript Basics

Quiz on basics of javascript programming language.

C# variables and classes

This quiz contains questions about C# classes and variables.

Basic Networking Questions

This quiz consists of some basic networking questions.