使用simpleDateFormat无效工作将String转换为Util Date

时间:2013-09-25 05:22:34

标签: java date date-format

我有一个字符串中有日期,我需要hh:mm:ss要添加到日期,但是当我使用dateFormat时它会给我ParseException。这是代码:

DateFormat sdff = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String startDate = "2013-09-25";
Date frmDate;
frmDate = sdff.parse(startDate);

System.out.println("from date = " + frmDate);

我得到了abv代码的解析异常。但是如果我从日期格式中删除hh:mm:ss它工作正常,输出将是从日期=星期三9月25日00:00:00 IST 2013 。 但我需要输出像从date = 2013-09-25 00:00:00

请帮帮我。 提前谢谢。

6 个答案:

答案 0 :(得分:8)

你需要2个SimpleDateFormat对象。一个用于解析当前日期字符串,另一个用于将解析日期格式化为所需格式。

// This is to parse your current date string
DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String startDate = "2013-09-25";
Date frmDate = sdf.parse(startDate); // Handle the ParseException here

// This is to format the your current date to the desired format
DateFormat sdff = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String frmDateStr = sdff.format(frmDate);

修改: -

Date没有这样的格式。您只能使用SDF获取它的String表示。这里摘录自docs

  

一个围绕毫秒值的薄包装器,允许JDBC识别   这是一个SQL DATE值。毫秒值表示数字   自1970年1月1日00:00:00.000以来经过的毫秒数   GMT。

关于将其插入数据库的问题,java Date可以在DB日期格式中保持不变。您不需要进行任何格式化。只有在从DB获取日期时,您才可以使用to_char()方法对其进行格式化。

答案 1 :(得分:1)

parse()用于将String转换为Date。它要求格式匹配,否则您将获得例外。
format()用于将日期转换为日期/时间字符串 根据您的要求,您需要使用以上两种方法。

    DateFormat parser = new SimpleDateFormat("yyyy-MM-dd");
    DateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
    String startDate = "2013-09-25";
    Date parsedDate = parser.parse(startDate);
    String formattedDate = dateFormatter.format(parsedDate);//this will give your expected output

答案 2 :(得分:1)

TL;博士

LocalDate.parse( "2013-09-25" )       // Parse the string as a date-only object lacking time-of-day and lacking time zone.
.atStartOfDay(                        // Let java.time determine the first moment of the day. Not always 00:00:00 because of anomalies such as Daylight Saving Time (DST). 
    ZoneId.of( "America/Montreal" )   // Specify a time zone using legitimate `continent/region` name rather than 3-4 letter pseudo-zones.
)                                     // Returns a `ZonedDateTime` object.
.toString()                           // Generate a string in standard ISO 8601 format, wisely extended from the standard by appending the name of the time zone in square brackets.
  

2013-09-25T00:00-04:00 [美国/蒙特利尔]

要生成字符串,请传递DateTimeFormatter

LocalDate.parse( "2013-09-25" )            // Parse the string as a date-only object lacking time-of-day and lacking time zone.
.atStartOfDay(                             // Let java.time determine the first moment of the day. Not always 00:00:00 because of anomalies such as Daylight Saving Time (DST). 
    ZoneId.of( "America/Montreal" )        // Specify a time zone using legitimate `continent/region` name rather than 3-4 letter pseudo-zones.
)                                          // Returns a `ZonedDateTime` object.
.format(                                   // Generate a string representing the value of this `ZonedDateTime` object.
    DateTimeFormatter.ISO_LOCAL_DATE_TIME  // Formatter that omits zone/offset.
).replace( "T" , " " )                     // Replace the standard’s required 'T' in the middle with your desired SPACE character.
  

2013-09-25 00:00:00

详细

您的格式设置模式必须与您的输入相符,正如其他人所指出的那样。解析字符串需要一个格式化程序,另一个格式化程序用于生成字符串。

此外,您正在使用过时的类。

java.time

现代方法使用 java.time 类来取代麻烦的旧遗留日期时间类。

LocalDate

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

您可以解析字符串以生成LocalDate。默认情况下,标准ISO 8601格式在java.time中使用。因此无需指定格式化模式。

LocalDate ld = LocalDate.parse( "2013-09-25" ) ;

时区对于确定日期至关重要。对于任何给定的时刻,日期在全球范围内因地区而异。例如,在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( 2013 , 9 , 25 ) ;  // Years use sane direct numbering (2013 means year 2013). Months use sane numbering, 1-12 for January-December.

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

LocalDate ld = LocalDate.of( 2013 , Month.SEPTEMBER , 25 ) ;

格式

如果您想获得该日期当天的第一时刻,请应用时区。如上所述,日期和时间需要时区的上下文或UTC的偏移量来表示时间线上的特定时刻。

不要假设这一天从00:00:00开始。诸如Daylight Saving Time (DST)之类的异常意味着这一天可能会在另一个时间开始,例如01:00:00。让 java.time 确定当天的第一时刻。

ZoneId z = ZoneId.of( "Asia/Kolkata" ) ;
ZonedDateTime zdt = ld.atZone( z ) ;

如果您希望以问题中显示的格式输出,则可以定义自己的格式。我提醒您不要在结果字符串中省略时区或偏移信息,除非您绝对确定用户可以从更大的上下文中辨别其含义。

DateTimeFormatter f = DateTimeFormatter.ofPattern( "uuuu-MM-dd HH:mm:ss" ) ;
String output = zdt.format( f ) ;

关于 java.time

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

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

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

如果JDBC driver符合JDBC 4.2或更高版本,您可以直接与数据库交换 java.time 对象。不需要字符串或java.sql。* classes。

从哪里获取java.time类?

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

答案 3 :(得分:0)

这是因为您的字符串是yyyy-MM-dd,但是定义的日期格式是yyyy-MM-dd hh:mm:ss。 如果您将字符串startDate更改为yyyy-MM-dd hh:mm:ss,它应该可以正常工作

答案 4 :(得分:0)

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
sdf.parse(sdf.format(new Date()));

这将返回日期类型

答案 5 :(得分:0)

问题是'2013-09-25'日期无法解析为'yyyy-MM-dd hh:mm:ss'日期格式。首先,您需要将以下日期解析成其匹配模式,即'yyyy-MM-dd'

将其解析为正确的格式后,您可以提供自己喜欢的日期格式'yyyy-MM-dd hh:mm:ss'

现在您可以设置Date的格式,并根据您的喜好输出日期

SimpleDateFormat可用于实现此结果。

尝试此代码。

    String startDate = "2013-09-25";
    DateFormat existingPattern = new SimpleDateFormat("yyyy-MM-dd");
    DateFormat newPattern = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
    Date date = existingPattern.parse(startDate);
    String formattedDate = newPattern.format(date);
    System.out.println(formattedDate); //outputs: 2013-09-25 00:00:00