12
votes
4answers
639 views
Should I use Java date and time classes or go with a 3rd party library like Joda Time?
Hi,
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 …
8
votes
6answers
436 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 updat …
3
votes
2answers
99 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 w …
3
votes
2answers
128 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 object …
3
votes
1answer
165 views
Joda-time: First day in this year’s ISO week 1
Hi,
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 ca …
3
votes
3answers
271 views
Best practice for ignoring year in date for date ranges
I need to model some information about seasons, and need to track them based on start / end date in a year-agnostic way. I.e. I need to allow users to define summer as being betwe …
2
votes
2answers
78 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 …
2
votes
1answer
97 views
Is it possible to change the base millisecond refrence time 1970 to 2008 in java (like JSR-310)
I want to be able to change the base millisecond reference from 1970 to 2008 in java so
that I can save space in the database and unique Ids.
Preferably with Joda-Time.
The upcom …
2
votes
1answer
294 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 …
2
votes
3answers
518 views
Decimal DateTime formatter in Java or Joda
I'm writing a file that requires dates to be in decimal format:
2007-04-24T13:18:09 becomes 39196.554270833331000
Does anyone have a time formatter that will do this (Decim …
1
vote
1answer
35 views
Best way to calculate next date from start plus frequency using joda time
Hi all
I want to work out the next payment date in my code. I have a start date and i have a payment frequency which can be DAY, WEEK, MONTH or YEAR. So if the start date was 10 F …
1
vote
5answers
152 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 difinitive source for this information. Will Joda Time be included in a future …
1
vote
0answers
27 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): …
1
vote
4answers
91 views
How to parse four digit year only (with Joda Time)?
Is there a way to force Joda time to parse dates only when they contain four digit years? For example:
2009-11-11 - should parse
09-11-11 - should not parse
Tried the following …
1
vote
3answers
160 views
Joda Time bug or my mistake? (Java Joda Time dates as strings parsing)
Hi, so I was having a problem parsing a date, using the JodaTime chronology IslamicChronology so wrote a small example to demonstrate my problem.
Here's the code:
import org.joda …
