-1

需要帮助,如何在java中转换它?2012 年 9 月 9 日 = 2012 年 9 月 9 日?我们的老师将其作为作业分配.. 月、日和年,并分别输入

提前谢谢

package exam4;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.swing.JOptionPane;

public class Exam4 {

public static void main(String[] args) {


        String inMonth=JOptionPane.showInputDialog(null, "Enter Month");
            int intMonth = Integer.parseInt(inMonth);

        String inDay=JOptionPane.showInputDialog(null, "Enter Day");
            int intDay = Integer.parseInt(inDay);

        String inYear=JOptionPane.showInputDialog(null, "Enter Year");
            int intYear = Integer.parseInt(inYear);

        getDate(intMonth, intDay, intYear);


}

static void getDate(int intMonth, int intDay, int intYear){

    if((intMonth==2)&&(intDay<=29)&&(intYear<=9999)){
        JOptionPane.showMessageDialog(null, "February 29, 2012");
        genDate(intMonth,intDay,intYear);
    }         

        else if (((intMonth<12)&&(intDay<31)&&(intYear<9999))&&((intMonth==2)&&(intDay<=29)&&(intYear<=9999))){
            JOptionPane.showMessageDialog(null, "Regular date");

        }

        else{
            JOptionPane.showMessageDialog(null, "atik na date");
        }
}

static void genDate(int intMonth, int intDay, int intYear){

        String fMonth = Integer.toString(intMonth);
        String fDay = Integer.toString(intDay);
        String fYear = Integer.toString(intYear);

        String DateTime=fMonth+fDay+fYear;

    SimpleDateFormat dateFormat = new SimpleDateFormat("MMddyyyy");
    Date myDate = null;

        try {
            myDate = dateFormat.parse(DateTime);
        } catch (ParseException e) {
          }

    SimpleDateFormat timeFormat = new SimpleDateFormat("MMMMM dd, yyyy");
    String finalDate = timeFormat.format(myDate);

    JOptionPane.showMessageDialog(null,finalDate);

} 

}

当我输入 02 02 2012 时,它给了我奇怪的日期...尝试输入 2012 年 2 月 29 日.. 它给出了 0013 年 12 月 13 日.. 我不知道为什么 =(

4

1 回答 1

3

用于SimpleDateFormat将字符串转换为日期,然后转换回字符串,如下所示:

     DateFormat format1 = new SimpleDateFormat("MM-dd-yyyy");
     Date date = format1.parse("09-09-2012");
     DateFormat format2 = new SimpleDateFormat("MMMMM dd, yyyy");
     String dateString = format2.format(date);
     System.out.println(dateString); //<- prints September 09, 2012
于 2012-10-27T04:39:26.287 回答