English 中文(简体)
简明表格给出的错误结果
原标题:SimpleDateFormat parse() gives incorrect result
  • 时间:2011-08-16 08:29:51
  •  标签:
  • java

Dfault TimeZone GMT-3.00. I am parsing new Date("1900/01/01").toString using the parse method of SimpleDateFormat.

The Result i get is Sun Dec 31 23:15:16 UYT 1899 instead of Mon Jan 01 00:00:00 UYT 1900

我无法理解为什么结果不同。

PS:如果将时间Zone改为GMT +5.30,结果就是预期的。

最佳回答

http://www.timeanddate.com/worldclock/timezone.html?n=163&syear=1900"rel=“nofollow”>。 UYT 时区的变化,截至1920年12月31日,UYT 时区为UTC-3.44,而不是UTC-3.00,因此你的结果是正确的。

问题回答

你们正在使用这一法典?

    SimpleDateFormat sdf = new SimpleDateFormat("yyyy/dd/MM");
    System.out.println(sdf.parse("1900/01/01"));

也许你们会发现错误的象征......





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签