更改Java字符串中的日期格式


465

String代表一个约会。

String date_s = "2011-01-18 00:00:00.0";

我想将其转换为a Date并以YYYY-MM-DD格式输出。

2011-01-18

我该如何实现?


好的,根据我在下面检索到的答案,这是我尝试过的事情:

String date_s = " 2011-01-18 00:00:00.0"; 
SimpleDateFormat dt = new SimpleDateFormat("yyyyy-mm-dd hh:mm:ss"); 
Date date = dt.parse(date_s); 
SimpleDateFormat dt1 = new SimpleDateFormat("yyyyy-mm-dd");
System.out.println(dt1.format(date));

但是它输出的02011-00-1不是期望的2011-01-18。我究竟做错了什么?


163
yyyyy与yyyy不同。:)
气垫船充满鳗鱼,

2
回旋镖问题。您的用例是什么?因为您可能应该使用内置模式(DateFormat.getDateTimeInstance())。
帕维尔Dyda

11
月份在格式字符串中用MM表示,而不像上面的示例那样用mm表示。mm表示分钟。
Mike Mike

3
我改变YYYY-MM-DD以YYYY-MM-DD,导致最初版本没有工作
帕夫洛Zvarych

Answers:


506

使用LocalDateTime#parse()(或ZonedDateTime#parse()如果字符串恰巧包含时区部分)将String特定模式中的解析为LocalDateTime

String oldstring = "2011-01-18 00:00:00.0";
LocalDateTime datetime = LocalDateTime.parse(oldstring, DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.S"));

使用LocalDateTime#format()(或ZonedDateTime#format())以某种格式将LocalDateTimea 格式化为String

String newstring = datetime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd"));
System.out.println(newstring); // 2011-01-18

或者,当您尚未使用Java 8时,请使用SimpleDateFormat#parse()String特定模式中的解析为Date

String oldstring = "2011-01-18 00:00:00.0";
Date date = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.S").parse(oldstring);

用于SimpleDateFormat#format()将a格式化DateString特定模式。

String newstring = new SimpleDateFormat("yyyy-MM-dd").format(date);
System.out.println(newstring); // 2011-01-18

也可以看看:


更新:根据您的失败尝试:模式区分大小写。阅读java.text.SimpleDateFormatjavadoc,各个部分代表什么。因此,例如M代表几个月和m几分钟。而且,年份存在四个数字yyyy,而不是五个数字yyyyy。仔细看看我上面在此处发布的代码段。


如果您希望日期看起来像“ 2012年9月1日星期一”,该怎么办?
crmepham 2014年

11
@crm:只需单击javadoc链接,在那里找到必要的模式字符并相应地更改模式。
BalusC 2014年

当您尚未使用Java 8时,请考虑使用backport,ThreeTen Backport,然后使用答案中的第一个示例。或对于API级别26以下的Android,ThreeTenABP
Ole VV

157

格式区分大小写,因此请使用MM而不是mm(这是分钟),而yyyy作为参考,您可以使用以下速查表。

G   Era designator  Text    AD
y   Year    Year    1996; 96
Y   Week year   Year    2009; 09
M   Month in year   Month   July; Jul; 07
w   Week in year    Number  27
W   Week in month   Number  2
D   Day in year Number  189
d   Day in month    Number  10
F   Day of week in month    Number  2
E   Day name in week    Text    Tuesday; Tue
u   Day number of week (1 = Monday, ..., 7 = Sunday)    Number  1
a   Am/pm marker    Text    PM
H   Hour in day (0-23)  Number  0
k   Hour in day (1-24)  Number  24
K   Hour in am/pm (0-11)    Number  0
h   Hour in am/pm (1-12)    Number  12
m   Minute in hour  Number  30
s   Second in minute    Number  55
S   Millisecond Number  978
z   Time zone   General time zone   Pacific Standard Time; PST; GMT-08:00
Z   Time zone   RFC 822 time zone   -0800
X   Time zone   ISO 8601 time zone  -08; -0800; -08:00

例子:

"yyyy.MM.dd G 'at' HH:mm:ss z"  2001.07.04 AD at 12:08:56 PDT
"EEE, MMM d, ''yy"  Wed, Jul 4, '01
"h:mm a"    12:08 PM
"hh 'o''clock' a, zzzz" 12 o'clock PM, Pacific Daylight Time
"K:mm a, z" 0:08 PM, PDT
"yyyyy.MMMMM.dd GGG hh:mm aaa"  02001.July.04 AD 12:08 PM
"EEE, d MMM yyyy HH:mm:ss Z"    Wed, 4 Jul 2001 12:08:56 -0700
"yyMMddHHmmssZ" 010704120856-0700
"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"   2001-07-04T12:08:56.235-0700
"yyyy-MM-dd'T'HH:mm:ss.SSSXXX"   2001-07-04T12:08:56.235-07:00
"YYYY-'W'ww-u"  2001-W27-3

1
“ yyyy-MM-dd'T'HH:mm:ss.SSSZ”应该是“ yyyy-MM-dd'T'HH:mm:ss.SSS'Z'”
公平的玩家,

2
不,如果您将Z放在单引号中,它将给出Z作为输出,但是如果没有它,它将给出Timezone。例如。2014-08-14T01:24:57.236Z和没有它的2014-08-14T01:24:57.236-0530->我尝试使用jdk1.7
Dev

1
“ yyyyy.MMMMM.dd GGG hh:mm aaa” 02001.July.04 AD 12:08 PM注意月份中的额外M。四不五!
Stefano Mtangoo 2014年

如果它是4个字母或更多,则使用完整格式。因此您可以同时使用4倍m甚至5倍m
Dev

这几乎是文档的复制粘贴。没有提供额外的解释,并且没有指向文档的链接,如果需要的话,可以获取更多信息。-1。(这是链接btw
XenoRo

108

答案当然是创建一个SimpleDateFormat对象,并使用它来将String解析为Date并将Dates格式化为String。如果您尝试过SimpleDateFormat,但没有成功,请显示代码和可能收到的任何错误。

附录:“字符串”格式的“ mm”与“ MM”不同。使用MM数月,用mm数分钟。另外,yyyyy与yyyy不同。例如,:

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class FormateDate {

    public static void main(String[] args) throws ParseException {
        String date_s = "2011-01-18 00:00:00.0";

        // *** note that it's "yyyy-MM-dd hh:mm:ss" not "yyyy-mm-dd hh:mm:ss"  
        SimpleDateFormat dt = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
        Date date = dt.parse(date_s);

        // *** same for the format String below
        SimpleDateFormat dt1 = new SimpleDateFormat("yyyy-MM-dd");
        System.out.println(dt1.format(date));
    }

}

导入java.text.ParseException; 导入java.text.SimpleDateFormat; 导入java.util.Date; 公共类formateDate {/ ** * @param args * @throws ParseException * / public static void main(String [] args)throws ParseException {// TODO自动生成的方法存根String date_s =“ 2011-01-18 00:00 :00.0“; SimpleDateFormat dt = new SimpleDateFormat(“ yyyyy-mm-dd hh:mm:ss”); 日期date = dt.parse(date_s); SimpleDateFormat dt1 =新的SimpleDateFormat(“ yyyyy-mm-dd”); System.out.println(dt1.format(date)); }}我希望输出为“ 2011-01-18”,但输出为02011-00-1
amit4444 2011年

发表您对原始问题有补充的任何代码(缩进四个空格)。这样,它将保留其格式,然后我们可以读取它。
气垫船充满鳗鱼,

1
请参阅上面的“编辑我的答案”。您在应使用“ MM”格式的字符串中使用“ mm”
气垫船充满鳗鱼,

hh将为您提供1到12范围内的小时,a除了打印/解析AM或之外,您还需要使用PM。要打印/解析0-23范围内的小时,请使用HH
Andre Holzner

22

为什么不简单地使用这个

Date convertToDate(String receivedDate) throws ParseException{
        SimpleDateFormat formatter = new SimpleDateFormat("dd-MM-yyyy");
        Date date = formatter.parse(receivedDate);
        return date;
    }

另外,这是另一种方式:

DateFormat df = new SimpleDateFormat("dd/MM/yyyy");
String requiredDate = df.format(new Date()).toString();

要么

Date requiredDate = df.format(new Date());

干杯!


2
为什么不使用这个?因为(a)它忽略了时区问题。确定日期取决于时区。此代码取决于JVM的默认时区。因此,结果可能会无意间发生变化。(b)因为java.util.Date和SimpleDateFormat类非常麻烦,应避免使用。
罗勒·布尔克2014年

2
总是返回strin,Date requiredDate = df.format(new Date());
国内配送

15

java.time在Java 8和更高版本中使用软件包:

String date = "2011-01-18 00:00:00.0";
TemporalAccessor temporal = DateTimeFormatter
    .ofPattern("yyyy-MM-dd HH:mm:ss.S")
    .parse(date); // use parse(date, LocalDateTime::from) to get LocalDateTime
String output = DateTimeFormatter.ofPattern("yyyy-MM-dd").format(temporal);

9

[编辑,以包括BalusC的更正] SimpleDateFormat类应该可以解决问题:

String pattern = "yyyy-MM-dd HH:mm:ss.S";
SimpleDateFormat format = new SimpleDateFormat(pattern);
try {
  Date date = format.parse("2011-01-18 00:00:00.0");
  System.out.println(date);
} catch (ParseException e) {
  e.printStackTrace();
}

DD代表“每年的日子”,而不是“每月的日子”。hh代表“上午/下午(1-12)的小时”,而不是“白天(0-23)的小时”。
BalusC

9

其他答案是正确的,基本上您的模式中的“ y”字符数错误。

时区

不过还有一个问题……您没有解决时区问题。如果您打算使用UTC,那么您应该这样说。如果不是,则答案不完整。如果您想要的只是没有时间的日期部分,那么就没有问题。但是,如果您做的进一步工作可能涉及时间,则应指定一个时区。

乔达时代

这是相同类型的代码,但使用的是第三方开源Joda-Time 2.3库

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

String date_s = "2011-01-18 00:00:00.0";

org.joda.time.format.DateTimeFormatter formatter = org.joda.time.format.DateTimeFormat.forPattern( "yyyy-MM-dd' 'HH:mm:ss.SSS" );
// By the way, if your date-time string conformed strictly to ISO 8601 including a 'T' rather than a SPACE ' ', you could
// use a formatter built into Joda-Time rather than specify your own: ISODateTimeFormat.dateHourMinuteSecondFraction().
// Like this:
//org.joda.time.DateTime dateTimeInUTC = org.joda.time.format.ISODateTimeFormat.dateHourMinuteSecondFraction().withZoneUTC().parseDateTime( date_s );

// Assuming the date-time string was meant to be in UTC (no time zone offset).
org.joda.time.DateTime dateTimeInUTC = formatter.withZoneUTC().parseDateTime( date_s );
System.out.println( "dateTimeInUTC: " + dateTimeInUTC );
System.out.println( "dateTimeInUTC (date only): " + org.joda.time.format.ISODateTimeFormat.date().print( dateTimeInUTC ) );
System.out.println( "" ); // blank line.

// Assuming the date-time string was meant to be in Kolkata time zone (formerly known as Calcutta). Offset is +5:30 from UTC (note the half-hour).
org.joda.time.DateTimeZone kolkataTimeZone = org.joda.time.DateTimeZone.forID( "Asia/Kolkata" );
org.joda.time.DateTime dateTimeInKolkata = formatter.withZone( kolkataTimeZone ).parseDateTime( date_s );
System.out.println( "dateTimeInKolkata: " + dateTimeInKolkata );
System.out.println( "dateTimeInKolkata (date only): " + org.joda.time.format.ISODateTimeFormat.date().print( dateTimeInKolkata ) );
// This date-time in Kolkata is a different point in the time line of the Universe than the dateTimeInUTC instance created above. The date is even different.
System.out.println( "dateTimeInKolkata adjusted to UTC: " + dateTimeInKolkata.toDateTime( org.joda.time.DateTimeZone.UTC ) );

运行时...

dateTimeInUTC: 2011-01-18T00:00:00.000Z
dateTimeInUTC (date only): 2011-01-18

dateTimeInKolkata: 2011-01-18T00:00:00.000+05:30
dateTimeInKolkata (date only): 2011-01-18
dateTimeInKolkata adjusted to UTC: 2011-01-17T18:30:00.000Z

9

请在此处参考“日期和时间模式”。http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html

import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.ParseException;

public class DateConversionExample{

  public static void main(String arg[]){

    try{

    SimpleDateFormat sourceDateFormat = new SimpleDateFormat("yyyy-MM-DD HH:mm:ss");

    Date date = sourceDateFormat.parse("2011-01-18 00:00:00.0");


    SimpleDateFormat targetDateFormat = new SimpleDateFormat("yyyy-MM-dd");
    System.out.println(targetDateFormat.format(date));

    }catch(ParseException e){
        e.printStackTrace();
    }
  } 

}

8
try
 {
    String date_s = "2011-01-18 00:00:00.0";
    SimpleDateFormat simpledateformat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.S");
    Date tempDate=simpledateformat.parse(date_s);
    SimpleDateFormat outputDateFormat = new SimpleDateFormat("yyyy-MM-dd");           
    System.out.println("Output date is = "+outputDateFormat.format(tempDate));
  } catch (ParseException ex) 
  {
        System.out.println("Parse Exception");
  }

7
public class SystemDateTest {

    String stringDate;

    public static void main(String[] args) {
        SystemDateTest systemDateTest = new SystemDateTest();
        // format date into String
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd-MM-yyyy hh:mm:ss");
        systemDateTest.setStringDate(simpleDateFormat.format(systemDateTest.getDate()));
        System.out.println(systemDateTest.getStringDate());
    }

    public Date getDate() {
        return new Date();
    }

    public String getStringDate() {
        return stringDate;
    }

    public void setStringDate(String stringDate) {
        this.stringDate = stringDate;
    }
}

3
请在您的答案中添加一些信息以解释您的代码。
Kursad Gulseven

有一个方法名称getDate(),在应用SimpleDateFormat之后,您可以通过该方法名称获取日期obj,以便您可以根据在SimpleDateFormat构造函数中定义并在StringDate方法中设置的格式转换日期,以便对其进行缓存
Neeraj Gahlawat

6
   String str = "2000-12-12";
   Date dt = null;
   SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");

    try 
    {
         dt = formatter.parse(str);
    }
    catch (Exception e)
    {
    }

    JOptionPane.showMessageDialog(null, formatter.format(dt));

6

您可以使用:

Date yourDate = new Date();

SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd");
String date = DATE_FORMAT.format(yourDate);

它完美地工作!


5

您也可以使用substring()

String date_s = "2011-01-18 00:00:00.0";
date_s.substring(0,10);

如果要在日期前加一个空格,请使用

String date_s = " 2011-01-18 00:00:00.0";
date_s.substring(1,11);

5

您可以尝试新的Java 8date,有关更多信息,请参见Oracle文档

或者你可以尝试旧的

public static Date getDateFromString(String format, String dateStr) {

    DateFormat formatter = new SimpleDateFormat(format);
    Date date = null;
    try {
        date = (Date) formatter.parse(dateStr);
    } catch (ParseException e) {
        e.printStackTrace();
    }

    return date;
}

public static String getDate(Date date, String dateFormat) {
    DateFormat formatter = new SimpleDateFormat(dateFormat);
    return formatter.format(date);
}

4
private SimpleDateFormat dataFormat = new SimpleDateFormat("dd/MM/yyyy");

@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
    if(value instanceof Date) {
        value = dataFormat.format(value);
    }
    return super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
};

3

删除一个y表格SimpleDateFormat dt1 = new SimpleDateFormat("yyyyy-mm-dd");应该是SimpleDateFormat dt1 = new SimpleDateFormat("yyyy-mm-dd");


不完全是。您也需要正确的大小写(无论您使用的是现代DateTimeFormatter样式还是过时的样式SimpleDateFormat)。
Ole VV

0

SimpleDateFormat dt1 =新的SimpleDateFormat(“ yyyy-mm-dd”);


这个日期时间类在几年前被现代的java.time类所取代。具体来说DateTimeFormatterDateTimeFormatterBuilder。这表明SimpleDateFormat在2019年是不好的建议。
罗勒·布尔克

错误的格式代码在这里是错误的。hh一个小时。
罗勒·布尔克

通常,我们希望进行一些讨论或解释。堆栈溢出不只是片段库。
罗勒·布尔克

0

假设您想将格林威治标准时间2019-12-20 10:50 AM更改为2019-12-20 10:50 AM首先您必须了解日期格式第一个日期格式是yyyy-MM-dd hh :mm a zzz和第二个日期格式将为yyyy-MM-dd hh:mm a

只需从此函数返回一个字符串即可。

public String convertToOnlyDate(String currentDate) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm a ");
    Date date;
    String dateString = "";
    try {
        date = dateFormat.parse(currentDate);
        System.out.println(date.toString()); 

        dateString = dateFormat.format(date);
    } catch (ParseException e) {
        e.printStackTrace();
    }
    return dateString;
}

该功能将返回您想要的答案。如果要自定义更多内容,只需在日期格式中添加或删除组件。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.