Java - 显示用户输入日期字符串的一年中的某一天

时间:2013-11-02 23:48:35

标签: java date datetime gregorian-calendar

因此,该程序将用户输入作为字符串格式为“m / d / yyyy”或“mm / dd / yyyy”。然后它将月份显示为单词(例如,第1个月变为“1月”)。我需要做的最后一件事是使用GregorianCalendar类来确定一年中日期的序号位置。我真的不知道该怎么做。任何帮助将不胜感激。

import javax.swing.*;
import java.text.*;
import java.util.*;

public class ConvertDate {

   public static void main(String[] args) {


      String date = "";
      String[] monthName = 
         {"January", "February", "March", "April", 
            "May", "June", "July", "August", 
            "September", "October", "November", "December"};

      Integer[] daysInMonth = {29, 30, 31};

      int mm = 0;
      int dd = 0;
      int yy = 0;   

      String month = "";
      String day = "";
      String year = "";

      int maxDay = 0;


      while(mm < 1 || mm > 12 || dd < 1 || dd > maxDay) {            


         date = JOptionPane.showInputDialog(null, "Please, enter a date in the format MM/DD/YYYY.");

         String[] partsOfTheDate = date.split("/");

         mm = Integer.parseInt(partsOfTheDate[0]); 
         dd = Integer.parseInt(partsOfTheDate[1]);
         yy = Integer.parseInt(partsOfTheDate[2]);

         switch (mm) {
            case 1:  maxDay = daysInMonth[2]; // Jan
               break;
            case 2:  maxDay = daysInMonth[0]; // Feb 
               break;
            case 3:  maxDay = daysInMonth[2]; // Mar
               break;
            case 4:  maxDay = daysInMonth[1]; // Apr
               break;
            case 5:  maxDay = daysInMonth[2]; // May
               break;
            case 6:  maxDay = daysInMonth[1]; // Jun
               break;
            case 7:  maxDay = daysInMonth[2]; // Jul
               break;
            case 8:  maxDay = daysInMonth[2]; // Aug
               break;
            case 9:  maxDay = daysInMonth[1]; // Sep
               break;
            case 10: maxDay = daysInMonth[2]; // Oct
               break;
            case 11: maxDay = daysInMonth[1]; // Nov
               break;
            case 12: maxDay = daysInMonth[2]; // Dec
               break;
            default: maxDay = 0;
               break;
         }

         if((mm < 1 || mm > 12) || (dd < 1 || dd > maxDay)) {
            System.out.println("You entered " + date + ";\nyou did not include a valid month, day, or both.");
         }   
         else if((mm > 0 && mm < 13) && (dd > 0 && dd <= maxDay)) {
            System.out.println("You entered " + date + ";\nthat can also be expressed as " + monthName[mm - 1] + " " + dd + ", " + yy + ".");   
         }     

         GregorianCalendar greg = new GregorianCalendar();  
         greg.setTime(date);  
         greg.get(greg.DAY_OF_YEAR); 

      }   

   }  

}

4 个答案:

答案 0 :(得分:5)

使用SimpleDateFormatString解析为Date,然后将Date设为Calendar并获取day_of_year


相关

答案 1 :(得分:0)

使用Calendar greg = new GregorianCalendar(); greg.setTime(DATE_FORMAT);

您可以使用java'Date'类将用户输入字符串转换为date_format。

在这里检查资源...... http://pic.dhe.ibm.com/infocenter/adiehelp/v5r1m1/index.jsp?topic=%2Fcom.sun.api.doc%2Fjava%2Futil%2FGregorianCalendar.html

答案 2 :(得分:0)

您也不必使用所有这些案例

你可以像

那样做
case 6:
case 2:
case 3:
aMethod();
break;
case 4:
anotherMethod();
break;

这是有效的,因为当它碰巧是案例1(例如)时,它会落到案例2(没有中断语句),然后落到案例3中。** 看这里 Avoid Switch statement redundancy when multiple Cases do the same thing?

无论如何,

使代码更容易阅读。

Kumar几乎为你完成剩下的任务

答案 3 :(得分:0)

TL;博士

LocalDate.parse(                                 // Produce a `java.time.LocalDate` object, a date-only value without time-of-day and without time zone.
    "mm/dd/yyyy" , 
    DateTimeFormatter.ofPattern( "MM/dd/uuuu" )  // Specify formatting pattern to match your input string.
)
.getMonth()                                      // Get the `Month` 
.getDisplayName( FormatStyle.FULL , Locale.US )  // Translate the name of month to the human language and cultural norms of a particular `Locale`.
  

一月

和...

LocalDate.parse(   
    "mm/dd/yyyy" , 
    DateTimeFormatter.ofPattern( "MM/dd/uuuu" ) 
)
.getDayOfYear()                                   // Ordinal day number, 1-365 or 1-366 in a Leap Year.
  

324

java.time

您正在使用麻烦的旧日期时间类,这些类现在已经过时,已被 java.time 类取代。

LocalDate

LocalDate类表示没有时间且没有时区的仅限日期的值。

时区对于确定日期至关重要。对于任何给定的时刻,日期在全球范围内因地区而异。例如,在Paris France午夜后的几分钟是新的一天,而Montréal Québec中仍然是“昨天”。

如果未指定时区,则JVM会隐式应用其当前的默认时区。该默认值可能随时更改,因此您的结果可能会有所不同。最好明确指定您期望/预期的时区作为参数。

continent/region的格式指定proper time zone name,例如America/MontrealAfrica/CasablancaPacific/Auckland。切勿使用诸如ESTIST之类的3-4字母缩写,因为它们不是真正的时区,不是标准化的,甚至不是唯一的(!)。

ZoneId z = ZoneId.of( "America/Montreal" ) ;  
LocalDate today = LocalDate.now( z ) ;

如果要使用JVM的当前默认时区,请求它并作为参数传递。如果省略,则隐式应用JVM的当前默认值。最好是明确的,因为默认情况下可以在运行时期间由JVM中任何应用程序的任何线程中的任何代码随时更改

ZoneId z = ZoneId.systemDefault() ;  // Get JVM’s current default time zone.

或指定日期。您可以将月份设置为一个数字,1月至12月的数字为1-12。

LocalDate ld = LocalDate.of( 1986 , 2 , 23 ) ;  // Years use sane direct numbering (1986 means year 1986). Months use sane numbering, 1-12 for January-December.

或者,更好的是,使用预定义的Month枚举对象,一年中的每个月一个。提示:在整个代码库中使用这些Month对象,而不仅仅是整数,以使代码更具自我记录功能,确保有效值,并提供type-safety

LocalDate ld = LocalDate.of( 1986 , Month.FEBRUARY , 23 ) ;

对于月份名称,请使用Month枚举对象。

Month m = ld.getMonth() ;

生成localized string for the name of the month

String output = m.getDisplayName( TextStyle.FULL , Locale.US ) ; // Or Locale.CANADA_FRENCH and so on.

约达时间

更新 Joda-Time项目现在位于maintenance mode,团队建议迁移到java.time课程。这部分保留了完整的历史记录。

第三方库Joda-Time可以更轻松地处理您的问题。

月份名称

阅读第5段附近的Quick start guideDateTime对象有propertiesfields,可以从中收集信息,例如一个月的名称。

一年中的一天

Joda-Time提供Property,名称为dayOfYear

示例代码

在IntelliJ 13中的OS X Mountain Lion上的Java 7上使用Joda-Time 2.3。

org.joda.time.DateTime now = new org.joda.time.DateTime();
System.out.println("Now: " + now );

String monthName = now.monthOfYear().getAsText();
System.out.println("Name of Month: " + monthName );

String dayOfYear = now.dayOfYear().getAsString();
System.out.println("Day of Year: " + dayOfYear );

运行时:

Now: 2013-11-03T01:39:38.278-07:00
Name of Month: November
Day of Year: 307

有关Joda-Time和此示例代码的说明:

// © 2013 Basil Bourque. This source code may be used freely forever by anyone taking full responsibility for doing so.

// Joda-Time - The popular alternative to Sun/Oracle's notoriously bad date, time, and calendar classes bundled with Java 7 and earlier.
// http://www.joda.org/joda-time/

// Joda-Time will become outmoded by the JSR 310 Date and Time API introduced in Java 8.
// JSR 310 was inspired by Joda-Time but is not directly based on it.
// http://jcp.org/en/jsr/detail?id=310

// By default, Joda-Time produces strings in the standard ISO 8601 format.
// https://en.wikipedia.org/wiki/ISO_8601

解析用户输入的字符串,创建DateTime对象是一个完整的其他主题,应该是一个单独的问题。我忽略了你问题的这一方面,而是专注于你的头衔:一年中的一天。