Question

Hello, I have a program in Java that asks me to convert a date, entered by...

Hello, I have a program in Java that asks me to convert a date, entered by a user like: 02/14/20 to February 14, 2020.

How would I approach this? Should I use indexOf and Substrings?


0 0
Add a comment Improve this question Transcribed image text
Answer #1

import java.util.*;
import java.text.SimpleDateFormat;

class A {
   public static void main(String args[]) {
       SimpleDateFormat sd = new SimpleDateFormat("MM/dd/yy");
       String s = "2/14/20";
       Date d = sd.parse(s);
       System.out.println(d);  
   }
}

In this way you can make this conversion.

Add a comment
Know the answer?
Add Answer to:
Hello, I have a program in Java that asks me to convert a date, entered by...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Build a java program to validate a date in the future as entered by the user...

    Build a java program to validate a date in the future as entered by the user at the keyboard as three separate integer values: mm dd yyy Acceptable data criteria: 1. mm: month in range of 1-12 2. dd: day in range of 1-30 for April, June. September, & Nov. / 1-31 January, March, May, July, August, October, & December. Only accept 1-28 for February at this point. 3. yyy: current year (as long as the month and day have...

  • Create a Java program which asks the user how many names they want to enter. The...

    Create a Java program which asks the user how many names they want to enter. The program should then instantiate an array that will hold this many names. The main method should call a method, getNames() to allow the user to enter the names. A for loop should be used in this method. Once the names are entered, the main method should call another method displayNames() which will use a while loop to display the names entered.

  • Write a Java program that: • Asks the user to enter the number of integers that...

    Write a Java program that: • Asks the user to enter the number of integers that he need to enter; • Asked him to enter integer by integer; • Print The number of Odd numbers entered and the number of Even numbers entered. Important notes: 1. You should have to copy and paste the Java as your answer for this question. DON’T take screen shot for your Java Code. It must be editable. 2. Take a screen shot for your...

  • Hello, I need help with the following C code. This program asks the user to enter...

    Hello, I need help with the following C code. This program asks the user to enter three numbers and outputs the sum on the screen , all im trying to do is have the program reprompt the user for a number if anything other than a number is entered for each of the entries. I wanted to use do while for each of the functions but that did not work for example: Enter Number 1: 2 Enter Number 2: Hello...

  • Write a program that asks the user how many integers they would like to enter. You...

    Write a program that asks the user how many integers they would like to enter. You can assume they will enter an integer >= 1. The program will then prompt the user to enter that many integers. After all the numbers have been entered, the program should display the largest and smallest of those numbers (no, you cannot use lists, or any other material we haven't covered). When you run your program it should match the following format: How many...

  • Java Question, I need a program that asks a user to input a string && then...

    Java Question, I need a program that asks a user to input a string && then asks the user to type in an index value(integer). You will use the charAt( ) method from the string class to find and output the character referenced by that index. Allow the user to repeat these actions by placing this in a loop until the user gives you an empty string. Now realize that If we call the charAt method with a bad value...

  • PLEASE HELP!!!I need help with the following JAVA PROGRAMS. Please ready carefully. So this comes from...

    PLEASE HELP!!!I need help with the following JAVA PROGRAMS. Please ready carefully. So this comes from tony gaddis starting out with java book. I have included the screenshot of the problems for reference. I need HELP implementing these two problems TOGETHER. There should be TWO class files. One which has TWO methods (one to implement problem 8, and one to implement problem 9). The second class should consist of the MAIN program with the MAIN method which calls those methods....

  • This is another attempt to ask this question: I need a Java program that asks the...

    This is another attempt to ask this question: I need a Java program that asks the user for a String. the string must be atleast 7 character and only words and/or numbers, the program should read this input and output “Valid”. No special characters or whitespaces are allowed, if so output “Invalid” *** Please note: The program must be able to know if the string is less than 7 characters and output INVALID. Also the program must be able to...

  • I need to make this into a Java Code: Write a Java program that asks the...

    I need to make this into a Java Code: Write a Java program that asks the user for four words: word1 word2 word3 word4. Your prompts to the user must be: Enter 4 words: Output word1 and the length of word1 and the position of the character 'h' in word1 Output word2 and the length of word2 and the position of the character 'i' in word2 Output word3 and the length of word3 and the position of the substring "hi"...

  • Write a program that asks the user to enter number, and displays all the numbers that...

    Write a program that asks the user to enter number, and displays all the numbers that are multiples of 2 and 5 smaller than or equal to the number entered by the user. Hint: A number n is a multiple of 2 if the remainder of the division of n by 2 is equal to zero. Your program should have an output similar to the following: Please enter a number: 50 The multiples of 2 and 5 less than or...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT