2013-03-11 62 views
0

鉴于此代码,它将打印出正确的月份和年份,但似乎显示通常不正确的随机日期。我已经看过了一些链接,包括herehere检索给定月份的第一周的第一天

import java.util.Calendar; 
import javax.swing.JOptionPane; 
public class DayOfTheWeek { 
    Calendar now = Calendar.getInstance(); 
    int month; 
    int year; 
    String[] monthString; 
    public String monthOfInspection() { 
    String Month = JOptionPane.showInputDialog("Select month of inspection: "); 
    month = Integer.parseInt(Month); 
    monthString = new String[] { 
     "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dec" 
    }; 
    return monthString[month - 1]; 
    } 
    public int yearOfInspection() { 
    if(month == 1) { 
     now.get(Calendar.YEAR); 
     now.add(Calendar.YEAR, 1); 
    } 
    year = now.get(Calendar.YEAR); 
    return year; 
    } 
    public void dayOfTheWeek() { 
    now.set(Calendar.DAY_OF_MONTH, 1); 
    now.set(Calendar.MONTH, month); 
    now.set(Calendar.YEAR, year); 
    now.set(Calendar.DAY_OF_WEEK_IN_MONTH, 0); 
    String[] strDays = new String[] { 
     "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" 
    }; 
    JOptionPane.showMessageDialog(null, year); 
    JOptionPane.showMessageDialog(null, monthString[month - 1]); 
    JOptionPane.showMessageDialog(null, now.get(Calendar.DAY_OF_WEEK_IN_MONTH)); 
    JOptionPane.showMessageDialog(null, strDays[now.get(Calendar.DAY_OF_WEEK_IN_MONTH) - 1]); 
    } 
} 
+0

更改设置的顺序,每月设定一天,一个月后,并没有设置星期中月。 – 2013-03-11 04:19:58

回答

0

你或许应该使用Calendar.DAY_OF_WEEK而不是Calendar.DAY_OF_WEEK_IN_MONTH

public void dayOfTheWeek() { 
    now.set(Calendar.YEAR, year); 
    now.set(Calendar.MONTH, month); 
    now.set(Calendar.DAY_OF_MONTH, 1); 

    String[] strDays = new String[] { 
     "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" 
    }; 
    JOptionPane.showMessageDialog(null, year); 
    JOptionPane.showMessageDialog(null, monthString[month - 1]); 
    JOptionPane.showMessageDialog(null, now.get(Calendar.DAY_OF_WEEK)); 
    JOptionPane.showMessageDialog(null, strDays[now.get(Calendar.DAY_OF_WEEK) -  1]); 
    } 
0

假设你有正确的monthyear这是你可以做什么:

now.set(Calendar.DATE, 1); 
now.set(Calendar.MONTH, month); 
now.set(Calendar.YEAR, year); 
int dayOfWeek = now.get(Calendar.DAY_OF_WEEK);