How to convert from java.util.date to JodaTime and get same date
问题 I follow this question: Convert from java.util.date to JodaTime I have date: Sun Jan 01 00:00:00 CET 1854 now I want to convert it to joda datetime: DateTime dateTime = new DateTime(date); and now when I print this date I got: 1853-12-31T23:57:44.000+00:57:44 what is wrong and why my date changed ? How I can get the same date ? UPDATE: I get date using calendar: Calendar cal1 = Calendar.getInstance(); cal1.set(1854, 0, 1, 0, 0, 0); cal1.getTime() UPDATE2: propably there is problem with