改变YYYY / MM / DD - > MM / DD / YYYY java

时间:2012-06-05 16:52:38

标签: java

我希望将日期格式更改为MM / DD / YYYY,目前为YYYY / MM / DD。

我尝试过研究它,但具有讽刺意味的是,它总是相反。现在有人可能会说尝试向后尝试从那里工作,但它没有用。

我打电话给所有的事情:

import java.util.*;
import java.text.*;

class Driver {   
   public static void main (String[] args) {    
       Kid kid;
       Node list = new Node(); 

       kid = createKid("Lexie", 2.6, "11/5/2009"); 
       insertEnd(list, kid);
       kid = createKid ("Sally", 2.3, "4/8/2009"); 
       insertEnd(list, kid);
       kid = createKid ("Joe", 2.7, "6/16/2009");
       insertEnd(list, kid);
       kid = createKid ("Bob", 2.2, "1/16/2009");
       insertEnd(list, kid);
       kid = createKid ("Tom", 3.1, "8/16/2009");
       insertEnd(list, kid);
       printList(list);
   } //end main method

   public static Kid createKid(String name, double height, String date) {
       return new Kid(name, height, date);
   }

} //end class     


import java.util.*; 
import java.text.SimpleDateFormat;
import java.io.*;
class Kid {  
    String name; 
    double height; 
    GregorianCalendar bDay; 

    ...
    /**
     * Second constructor for kid
     * Setting instances to equal the constructors of this
     * @param 1: Setting n (aka name,   but it was taken) to equal the instance var of name
     * @param 2: Setting h (aka height, but it was taken) to equal the instance var of height
     * @param 3: Setting date to equal the instance var of bDay with some modifications
     */
    public Kid (String n, double h, String date) {
        StringTokenizer st = new StringTokenizer(date, "/");
        this.name = n;
        this.height = h;
        this.bDay = new GregorianCalendar(Integer.parseInt(st.nextToken()), 
        Integer.parseInt(st.nextToken()), Integer.parseInt(st.nextToken()));
    }

    /**
     * public String toString() { 
     * Converting Java language to English language
     */
    public String toString() {

        return (this.name + ", Height: " + this.height + "ft., Born: "
        +       this.bDay.get(Calendar.DATE) + "/" + this.bDay.get(Calendar.MONTH) 
        + "/" + this.bDay.get(Calendar.YEAR));

    }
} //end class 

顺便说一下,我不熟悉Simple Date Format类和Date Format类,但是没有成功地尝试实现它们。

2 个答案:

答案 0 :(得分:7)

只需使用SimpleDateFormatString转换为Date即可。无需麻烦Calendar API。

String dateString = "2012/06/05";
Date date = new SimpleDateFormat("yyyy/MM/dd").parse(dateString);

在整个代码中使用此Date对象。每当您需要向人类展示Date对象时,只需使用另一个SimpleDateFormat

String dateString = new SimpleDateFormat("MM/dd/yyyy").format(date);

答案 1 :(得分:0)

TL;博士

String output = LocalDate.parse( "2012/06/05".replace( "/" , "-" ) ).format( DateTimeFormatter.ofLocalizedDate( FormatStyle.SHORT ).withLocale( Locale.US ) ) ;

详细

Answer by BalusC是正确的,但现在过时了。

DateCalendar等旧的日期时间类现在已成为遗产。改为使用java.time类。

ISO 8601

您的输入字符串几乎符合ISO 8601标准。只需用连字符替换斜杠字符即可。默认情况下,java.time类以ISO 8601格式解析/生成字符串,而无需定义格式化模式。

String input = "2012/06/05".replace( "/" , "-" );

LocalDate

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

LocalDate ld = LocalDate.parse( input );

要以ISO 8601格式生成输出,只需致电toString

String output = ld.toString();

要生成其他格式的字符串,请使用DateTimeFormatter。通常最好通过指定Locale让该类自动为您本地化。 Locale确定(a)翻译的人类语言,(b)大写,标点符号,部分排序等问题的文化规范。

DateTimeFormatter f = DateTimeFormatter.ofLocalizedDate( FormatStyle.SHORT ) ;
f = f.withLocale( Locale.US );  // Or Locale.CANADA_FRENCH etc.
String output = ld.format( f );

关于java.time

java.time框架内置于Java 8及更高版本中。这些类取代了旧的麻烦日期时间类,例如java.util.Date.Calendar和& java.text.SimpleDateFormat

现在位于Joda-Timemaintenance mode项目建议迁移到java.time。

要了解详情,请参阅Oracle Tutorial。并搜索Stack Overflow以获取许多示例和解释。

大部分java.time功能都被反向移植到Java 6& ThreeTen-Backport中的7,并进一步适应Android中的ThreeTenABP

ThreeTen-Extra项目使用其他类扩展java.time。该项目是未来可能添加到java.time的试验场。您可以在此处找到一些有用的课程,例如IntervalYearWeekYearQuarter等。