Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying t make a date that comes in like this mm/dd turn into the name of the month and day like it comes in 8/15 i want it to say August, 15

public void printAlphabetical()
{
           int month,day;// i got the month and day from a user previously in my program

       String s = String.format("%B, %02d%n",month,day);
       Date date = new Date();
       date.parse(s);// this does not work
       System.out.printf(s);
}
share|improve this question
it's spelled February ;) – xenoterracide Nov 26 '09 at 14:33
1  
also you might wish to expand on where you're actually having a problem. p.s. this sounds like a homework problem. – xenoterracide Nov 26 '09 at 14:36
this is a homework assignment and so i spelled it wrong you know what I meant lol anyways I have been at this all day yesterday and so far since like 7 am – daddycardona Nov 26 '09 at 14:39
Dude, you asked that question twice yesterday and there is dozen of answers already on SO. Did you consider trying to understand the answers already given before to post a new question? You are only generating noise here... – Pascal Thivent Nov 26 '09 at 14:52

6 Answers

up vote 0 down vote accepted
String[] months = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", 
                    "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}

System.out.println(months[month - 1] + ", " + day);
share|improve this answer
He want full month names and you're leaving the SimpleDateFormat capabilities aside. – BalusC Nov 26 '09 at 14:44
I don't mind him expanding Feb to February. – Amarghosh Nov 26 '09 at 14:49
    System.out.println( new SimpleDateFormat("MMMM, dd").format( 
                          new SimpleDateFormat("MM/dd").parse("2/24") ) );

mmhh dejavu? nahhh exact duplicate -> here

share|improve this answer
As I interpret it, he rather wanted d instead of dd. – BalusC Nov 26 '09 at 15:45
Yeah, it is a mystery. It works the same anyway. Parsing 2/24 yields february, 24. – OscarRyz Nov 26 '09 at 16:24
Yes, but formatting using d yields February, 1 and formatting using dd yields February, 01. – BalusC Nov 26 '09 at 16:35

See Calendar and SimpleDateFormat

share|improve this answer

Take a look at the Java simple date format:

http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html

share|improve this answer

You can do something like this,

	        DateFormat formatter = new SimpleDateFormat("MM/dd/yyyy");
	        Date date = (Date)formatter.parse(dateStr + "/2000); // Must use leap year
	        formatter = new SimpleDateFormat("MMMM, dd");
	        System.out.println(formatter.format(date));
share|improve this answer
i tried this got inconnvertible types – daddycardona Nov 26 '09 at 15:06
Sorry. I have the month and day reversed. Edited. – ZZ Coder Nov 26 '09 at 15:14

2/24 as “February, 24”

So, the starting date has a pattern of M/d and the final date has a pattern of MMMM, d?

Use java.text.SimpleDateFormat wisely. First parse the String based on the desired pattern into a Date and then format the obtained Date into another String with the desired pattern.

Basic example:

String datestring1 = "2/24"; // or = month + "/" + day;
Date date = new SimpleDateFormat("M/d").parse(datestring1);
String datestring2 = new SimpleDateFormat("MMMM, d").format(date);
System.out.println(datestring2); // February, 24 (Month name is locale dependent!)
share|improve this answer
What about linking directly to stackoverflow.com/questions/1800091/…? – Pascal Thivent Nov 26 '09 at 14:56
I tried this it said incompatibal types as an error – daddycardona Nov 26 '09 at 15:00
I tried this and i get an error incompatible type – daddycardona Nov 26 '09 at 15:06
That's just a compilation error. The posted code compiles fine. Maybe you imported java.sql.Date instead of java.util.Date. That's often the first class with which an IDE pops up and also often which causes problems among the unawareness. – BalusC Nov 26 '09 at 15:44
@Pascal: although the concepts are the same, but that's a different answer. – BalusC Nov 26 '09 at 15:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.