Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here's what I have so far: it's a program that asks the user to enter the month, day, and year of birth in separate showInputDialog boxes. What I'm having a problem with is I have to use a switch statement to express the day of the week as "Sunday", "Monday", and so on, instead of Java's regular interpretation or 0, 1, and so forth. Here's what I have:

import java.util.GregorianCalendar;
import javax.swing.JOptionPane;   // Import JOptionPane from the swing class
import java.text.DateFormat;
public class FindDayOfBirth
{
 public static void main(String[] args)  //Main Method
 {

  // Declare and initialize variables


  String monthString, dayString,yearString;

  int month,day,year;

  monthString =JOptionPane.showInputDialog("Enter Month You were born in." );
  month = Integer.parseInt(monthString);         // Convert string into integer and stores the value  in age

  dayString = JOptionPane.showInputDialog("What's the day u were born on "); // Ask user for name of month
  day = Integer.parseInt(dayString);  // Convert string dayString into integer and store value in day.

  yearString = JOptionPane.showInputDialog("What's the year u were born on ");   // Ask user for numerical day born on
  year = Integer.parseInt(yearString);  // Convert string dayString into integer and store value in day.

  month-=1;
  GregorianCalendar birthYear = new GregorianCalendar(year,month,day);
  int birth = birthYear.get(GregorianCalendar.DAY_OF_WEEK);
  System.out.println( birth);
  switch (month)

  {
   //case 1: month = "January";
   //break;
   /*case 2: month = "February"
   case 3: month = "March"
   case 4: month = "April"
   case 5: month = "May"
   case 6: month = "June"*/
  }
  GregorianCalendar birthdate = new GregorianCalendar(year,month,day);
  long birthTime = birthdate.getTimeInMillis();
  DateFormat longDate = DateFormat.getDateInstance( DateFormat.LONG);
  String birthDateString = longDate.format(birthTime);
  System.out.println(birthDateString);

  //JOptionPane.showMessageDialog( null, outputMessage );


}

}

As you can see on one of the lines I have month -= 1. Well basically all I was doing was subtracting one from whatever month you put (number format September = 11 for example), so Java will take the 3 you enter for March which is wrong in Java's view: it's two since January starts at 0, and makes it fit Java's interpretation. All I need help with is the switch statement. I'll answer any questions about the program.

share|improve this question
Select your code and hit the 101 010 button to format it properly. – AHungerArtist Nov 9 '10 at 23:29
ok lol what button is that?? – jwill22 Nov 9 '10 at 23:31
Ctrl+K is what you want. – Jeremy Heiler Nov 9 '10 at 23:32
oh ok I'll know next time...thanks to whoever edited it – jwill22 Nov 9 '10 at 23:36
Is this homework? If so, you should disclaim such. Additionally, please clarify what you are having problems with exactly. Do you need help understanding the java switch statements? Do you want someone to fill this in for you? Are you encountering compilation problems? etc, etc – javamonkey79 Nov 9 '10 at 23:37
show 4 more comments

2 Answers

It doesn't look to me like you need the switch at all. GregorianCalendar will take in year, month, day in its constructor as is. From there you can format it however you want using various formatters like SimpleDateFormat.

share|improve this answer
Yeah that's just what the problem in the book says to do(the switch that is) – jwill22 Nov 10 '10 at 1:09

Hint: Calendar#get(int field) with the correct parameter, which I'll leave up to you to determine.

share|improve this answer

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.