Tagged Questions

Joda-Time provides a quality replacement for the Java date and time classes. The design allows for multiple calendar systems, while still providing a simple API.

learn more… | top users | synonyms

44
votes
5answers
4k views

Should I use Java date and time classes or go with a 3rd party library like Joda Time?

I'm creating a web based system which will be used in countries from all over the world. One type of data which must be stored is dates and times. What are the pros and cons of using the Java date ...
17
votes
2answers
2k views

Joda: what's the difference between Period, Interval and Duration?

Why do we need three classes? Which one performs better? Why is dividing a Period or Duration or Interval instance not implemented? E.g. p = p.divideBy(2);
14
votes
3answers
3k views

Joda-Time: Period to string

I'm using the Joda-Time library with Java. I'm having some difficulty trying to turn a Period object to a string in the format of "x days, x hours, x minutes". These Period objects are first created ...
14
votes
6answers
2k views

Are there any cons to using jodatime?

I want to convince the architecture manager to include the joda time jar in our product. Do you know any disadvantages in using it? I think joda time needs to be constantly updated because of the ...
13
votes
1answer
5k views

How to use JodaTime with java.sql.Timestamp

I Have a prepared statement INSERT INTO mst(time) VALUES (?); where time is of type Timestamp in a PostgreSQL database. I am inserting a Joda DateTime object, or I should say I am trying to. I can ...
12
votes
2answers
410 views

What's the standard way to work with dates and times in Scala? Should I use Java types or there are native Scala alternatives?

What's the standard way to work with dates and times in Scala? Should I use Java types such as java.util.Date or there are native Scala alternatives?
12
votes
2answers
8k views

Approach to convert from org.joda.time.DateTime to java.util.Calendar

Anyone done this and can share? I see an option or two but want to know what others have accomplished.
10
votes
5answers
641 views

Why dec 31 2010 returns 1 as week of year?

For instance: Calendar c = Calendar.getInstance(); DateFormat sdf = new SimpleDateFormat("dd/MM/yyyy"); c.setTime( sdf.parse("31/12/2010")); out.println( c.get( Calendar.WEEK_OF_YEAR ) ); Prints ...
9
votes
4answers
2k views

Persisting Joda DateTime instead of Java Date in Hibernate

My entities currently contain java Date properties. I'm starting to use Joda Time for date manipulation and calculations quite frequently. This means that I'm constantly having to convert my Dates ...
8
votes
3answers
577 views

Mockito: How to mock an interface of JodaTime

I use JodaTime#DateTime, and I need to mock its behavior. Since it is not possible to directly mock JodaTime#DateTime, I create an interface of it Clock.java public interface Clock { DateTime ...
8
votes
2answers
409 views

Hibernate TypeResolver

I'm aware that hibernate recently redid its type system in 3.6. I think this now allows you do associate a java Class with a Type (or UserType). For example I use joda-time and have a couple of ...
8
votes
3answers
654 views

Creating a user-friendly list of timezones for user-preferences

Below is a snippet of the list of timezones returned from java (I've printed the timezone offset, timezone ID, and long name, using JodaTime). (GMT-10:00) HST, Hawaii Standard Time (GMT-10:00) ...
8
votes
5answers
3k views

Joda Time to be included in Java 7?

I've read rumors that Joda Time is slated to be included in Java 7, but am having trouble locating a definitive source for this information. Will Joda Time be included in a future JDK? Please cite ...
7
votes
3answers
117 views

Jodatime's LocalDateTime is slow when used the first time

I'm currently testing out some webapp technologies in a java project and was wondering why the pages sometimes load fast and sometimes take almost 5s to load. I finally found out that it is this line ...
7
votes
2answers
1k views

Number of days between two dates in jodatime

How do i find the difference in Days between two DateTime instances? with difference in days i mean if start is on Monday and end is on Tuesday i expect a return value of 1 regardless the ...
7
votes
2answers
756 views

“Resource not found” when building Android app under IntelliJ 9.0 Maia Public Beta

I'm trying to port an app from Eclipse to IntelliJ. The app builds fine but it fails to run properly. Here's a partial stack trace I receive: ERROR/AndroidRuntime(957): ...
6
votes
1answer
990 views

persist Joda-time's DateTime via JPA

I'm using Jodatime in my Play app, but currently having to do a bunch of converting back and forth from/to java.util.Date and java.sql.Time. Since jodatime is included in the Play distribution, I'm ...
6
votes
4answers
2k views

How to convert Joda LocalDate to java.util.Date?

What is the simplest way to convert a JodaTime LocalDate to java.util.Date object?
6
votes
2answers
676 views

JodaTime with JPA, PostgreSQL and NULL values

I'm trying to persists JodaTime DateTime fields with JPA to PostgreSQL but run into troubles with null pointers to database NULL values. I'm working with the NetBeans 7 beta 2 IDE. The persistence ...
6
votes
2answers
1k views

JAX-WS and Joda-Time?

How do I write a JAX-WS service so the @WebParam of my @WebMethod is a Joda-Time class like DateTime? Will @XmlTypeAdapter on a parameter work? I'm deploying to GlassFish 2.1. Let me clarify the ...
6
votes
3answers
2k views

First day of next month with java Joda Time

How would you rewrite the method below, which returns the first day of next month, with the org.joda.time package? public static Date firstDayOfNextMonth() { Calendar nowCal = ...
6
votes
1answer
137 views

Why do Joda instants extend the raw type Comparable?

Joda's AbstractInstant interface extends the raw type Comparable, instead of Comparable<AbstractInstant>, which seems to violate Java best practices. In particular, it means that I cannot use ...
6
votes
4answers
808 views

Migrating from Java Calendar to Joda Date Time

Previously, when I first design a stock application related software, I decide to use java.util.Date to represent date/time information of a stock. Later, I realize most of the methods in ...
6
votes
2answers
1k views

Having trouble getting Joda-time to run on Android

I'm learning Android and have need for dates/times. I was recommended Joda-time by a colleague, which seems to be exactly what I need to make progress. Unfortunately, I'm having trouble getting it to ...
6
votes
2answers
525 views

How to substract a day/hour/minute from joda-time DateTime in Scala?

I am trying to use joda-time with its Scala wrapper. Saying val dt is a DateTime and contains a date (zero time), how do I get the date of the day befor it? dt - 1.days doesn't work and gives "type ...
6
votes
2answers
3k views

Joda time : How to convert String to LocalDate?

How to specify the format string to convert the date alone from string. In my case, only the date part is relevant Constructing it as DateTime fails: String dateString = "2009-04-17"; ...
6
votes
3answers
4k views

Joda Time: First day of week?

How do you get the first day of week given a Locale using Joda Time? Point: Most countries use the international standard Monday as first day of week (!). A bunch others use Sunday (notably USA). ...
6
votes
2answers
2k views

Joda-Time: How to get the next friday?

How can I get the next friday with the Joda-Time API. The LocalDate of today is today. It looks to me you have to decide whever you are before or after the friday of the current week. See this ...
6
votes
1answer
1k views

How can I parse a date including timezone with Joda Time

This snippet of code always parses the date into the current timezone, and not into the timezone in the string being parsed. final DateTimeFormatter df = DateTimeFormat.forPattern("EEE MMM dd ...
5
votes
2answers
143 views

Parsing time strings like “1h 30min”

Anyone know of a Java library that can parse time strings such as "30min" or "2h 15min" or "2d 15h 30min" as milliseconds (or some kind of Duration object). Can Joda-Time do something like this? (I ...
5
votes
3answers
166 views

In Grails, is there a good way to mock the current time using Joda time?

I'm writing some code that does date and time calculations against the current time. In Joda time, this is accessed through a (Java) constructor, as it is an immutable object. I need to be able to ...
5
votes
4answers
1k views

Android Java - Joda Date is slow

Using Joda 1.6.2 with Android The following code hangs for about 15 seconds. DateTime dt = new DateTime(); Originally posted this post Android Java - Joda Date is slow in Eclipse/Emulator - ...
5
votes
2answers
779 views

Parsing date with Joda with time zone

I have two timestamps which describe the same instant of time in two different formats. 2010-10-03 18:58:07 and 2010-10-03T16:58:07.000+02:00. I parse the timestamps with two different date ...
5
votes
2answers
559 views

Why Joda DateTimeFormatter cannot parse timezone names ('z')

From DateTimeFormatter javadoc: Zone names: Time zone names ('z') cannot be parsed. Therefore timezone parsing like: System.out.println(new SimpleDateFormat("EEE MMM dd HH:mm:ss z ...
5
votes
4answers
267 views

How can I mock JodaTime actual date?

I want to test this method: public FirmOrder findActiveByModelColor(ModelColor modelColor) { Query query = em.createQuery("FROM FirmOrder fo WHERE fo.modelColor = :modelColor AND fo.year = :year ...
5
votes
2answers
651 views

LocalDate interval in Joda-time

Joda-time has an Interval class, which is a range between DateTimes. What can be used for a range of LocalDates? I want an object that represents, for example "from 1/1/2011 to 10/1/2011", without ...
5
votes
5answers
798 views

How do I obtain the amount of days of a given month with Jodatime?

30 days hath September, April, June and November, All the rest have 31, Excepting February alone (And that has 28 days clear, With 29 in each leap year). Can I obtain this info ...
5
votes
3answers
1k views

Using Joda Date & Time API to parse multiple formats

I'm parsing third party log files containing date/time using Joda. The date/time is in one of two different formats, depending on the age of the log files I'm parsing. Currently I have code like ...
5
votes
4answers
227 views

Partially constructed object / Multi threading

I'm using joda due to it's good reputation regarding multi threading. It goes great distances to make multi threaded date handling efficient, for example by making all Date/Time/DateTime objects ...
5
votes
3answers
2k views

set DateTime to start of month

My API allows library client to pass Date: method(java.util.Date date) Working with joda-time, from this date I would like to extract the month and iterate over all days this month contains. Now, ...
5
votes
2answers
2k views

Joda Time gives wrong time zone

I'm using the Joda time (1.6) libraries and it keeps returning DateTime objects with the wrong time zone, British Summer Time instead of GMT. My Windows workstation (running JDK 1.6.0_16) thinks it's ...
5
votes
1answer
1k views

Joda-time: First day in this year's ISO week 1

I would like to find out the date of the Monday in this year's ISO week 1 (For 2009 this would be Monday, Dec 29 2008). I'm sure that joda-time can handle this, but I just can't figure out the API ...
4
votes
2answers
108 views

Joda time zone calculation

Been playing around with Joda timezones and found the following which seemed odd. I ran the following code DateTimeZone gmt = DateTimeZone.forID( "Etc/GMT" ); DateTimeZone gmtPlusOne = ...
4
votes
2answers
263 views

need flexible datetime conversion with joda

I want to use joda to parse datetime strings in emails. Unfortunately I get all kinds of different formats, for example Wed, 19 Jan 2011 12:52:31 -0600 Wed, 19 Jan 2011 10:15:34 -0800 (PST) Wed, 19 ...
4
votes
2answers
323 views

Time dependent unit tests

I need to test a function that whose result will depend on current time (using Joda time's isBeforeNow()). public boolean isAvailable() { return (this.someDate.isBeforeNow()); } Is it ...
4
votes
1answer
419 views

Problem getting JodaTime JSP Taglibs working

I'm trying to get the JodaTime taglib working in my Spring 3 MVC app. Per the website I should be able to put this in my jsp page and it should work. <%@taglib prefix="joda" ...
4
votes
2answers
2k views

Convert from java.util.date to JodaTime

I want to convert a java.util.Date to JodaTime so as to carry out subtractions between dates. Is there a good concise way to convert from Date to JodaTime? Thanks! Kurt
4
votes
3answers
364 views

Joda LocalDate - still an instant?

I'm looking for a proper serializable date-only class. Got a server in Central time zone, I want users in the Eastern to enter date as 2010-11-23, and users in Pacific to see it as 2010-11-23 (and ...
4
votes
3answers
489 views

JodaTime equivalent of DateUtils.truncate()

I have never used JodaTime before, but answering this question I tried it and came up with this ugly code to unset all fields below day: DateTime startOfMonth = input.withDayOfMonth(1) ...
4
votes
1answer
913 views

Joda time does time conversion 'too soon'

We have an application where the timing is critical. We're using joda to do time conversions and storing all data in UTC time. We've been in production for a while and everthing has been be perfect ...

1 2 3 4 5 7