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.
0
votes
0answers
7 views
Format JodaTime LocalDate in SpringMvc JSON using formatter
I have a problem with my Spring application.
How can I format a LocalDate in a JSON...
The problem is that when I send the JSON I have to send a number, but when Spring generate the JSON I have:
...
1
vote
1answer
19 views
ReactiveMongo 0.9: Joda Datetime Implicit Conversion for Macros.handler
I have case class with joda Datetime field:
case DomainPositionData(domain: String, position: Int, change: Option[Int], date:DateTime)
Trying to use macro to generate reader&writer:
implicit ...
0
votes
0answers
16 views
HQL where clause 'greater than' with jadira PersistentDateTimeWithZone
I'm using jadira PersistentDateTimeWithZone to store a joda DateTime with timezone. It all works as expected, except for searching for dates using ">=" - it compares the time timezone string in the ...
-1
votes
1answer
25 views
Last milliseconds of a day in ISO format in Java
I have string representations of dates that I need to convert to Date objects. I need the start of the day and the end of the day in datetime down to the millisecond. Here is what I have so far:
date ...
0
votes
2answers
40 views
Retrieving a UTC datetime from a data source — putting it into a Joda DateTime object and persisting it to MongoDB. What is the best way?
I am pulling data from an external source into my program and it has an ISO8601 Date attached to it but one of our requirements is that the hour/minutes/seconds get set to zero. This happens before I ...
1
vote
1answer
26 views
Adding Joda DateTime to MongoDB — Can't Serialize
I am taking a DateTime object and trying to persist it into MongoDB. Is there a way to implement "Serializable" for Joda Time?
Here is the error I am receiving
java.lang.RuntimeException: ...
1
vote
2answers
74 views
Joda Time: Exception parsing dates earlier than 1970
I have the following code for parsing dates:
public Boolean isDate(String date, String dateFormat) {
try {
DateTimeFormat.forPattern(dateFormat).parseDateTime(date);
} ...
0
votes
1answer
17 views
Can I change default locale to use?
Is it possible to change default locale to use? I don't wanna explicitly tell withLocale each time I need to parse/print date.
1
vote
2answers
74 views
In Java, how to get strings of days of week (Sun, Mon, …, Sat) with system's default Locale (language)
The simplest way:
String[] namesOfDays = new String[7] {
"SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"
};
This method does not use Locale. Therefore, if the system's language is not English, ...
2
votes
1answer
39 views
Round down a DateTime based on a given Period using Joda-Time
Given a period such as 3 days, or 5 weeks (a period with only one field type), I want to round a given DateTime to the nearest unit of that period (i.e, ignore the 5 in '5 days'). Examples:
Example ...
0
votes
1answer
53 views
jodatime how to know if daylight savings is on
I have an API that needs the timezone. For eg. if I am in california, I need to pass -7 to it when daylight savings is on (California , PDT is GMT - 7) and -8 to it when daylight saving is off. But I ...
-2
votes
1answer
58 views
Converting an ISO8601 string into DateTime format?
I have a string 20130510T202132Z that I want to convert into a DateTime object.
I've been trying to use Joda to get this to work but I can't get it to work.
I've hit every link I can find on the ...
0
votes
1answer
39 views
Using a Property Value Inside of createCriteria
I have 2 domain classes, Item and Manufacturer. The Manufacturer has a property on it to warn the user when the Item is about to expire (the date of which is stored as a Joda DateTime object). The ...
-1
votes
3answers
54 views
Creating a DateTime from two other dates
Basically I want to see if someones birthday is within 3 months of todays date. I am going to use Days to do this and just say "90" days.
My thoughts are as follows:
I will set a new datetime as ...
0
votes
2answers
27 views
Add one day into joda date time
I have date Wed May 08 00:00:00 GMT+06:30 2013. I add one day into it by using Joda date time lik this.
DateTime dateTime = new DateTime(date);
dateTime.plusDays(1);
When I print dateTime, I got ...
3
votes
1answer
35 views
How to keep the timezone when parsing a date?
I parse a date that comes with time zone information, say: 1/7/2008 11:00:00 AM -0700. The -0700 corresponds to the current time offset here in California, since we are now in PDT. If I parse it and ...
1
vote
1answer
27 views
JodaTime Number of Days since Epoch
I have a problem whereby the number of days since epoch returned by Joda Time library changes depending the time of the date I entered. If I enter 2012-05-14 22:00:00 and 2012-05-14 02:00:00 I would ...
0
votes
2answers
32 views
Given a date in integer format, how to convert it into a Date object?
For an application, I nee to extract out a number of fields from a file upload. One of these fields is a decimal date with no separators and as yyyyMMDD. For example, today's date would be ...
0
votes
1answer
48 views
joda-time giving wrong day when parsing
When I run the following:
final DateTimeFormatter format = DateTimeFormat.forPattern("E, d MMM y HH:mm:ss Z");
final DateTime date = format.withLocale(Locale.US).parseDateTime("Fri, 15 May 2013 ...
0
votes
1answer
32 views
How to fetch the records of last 24 hours or 7 days from today's date using JODA API
I am trying out my hand in finding out records which have been updated in the Oracle 11g DB in last 24 hours or 7 days or 30 days. I am able to get the desired functionality using "java.util.Calendar"
...
0
votes
1answer
50 views
need to find every X minutes between to hours
I have two hours lets say 12:00 and 14:00 (the input will always be two hours of "whatever" day) second time will always be greater than first time. So the input is simple : two given times in a day. ...
2
votes
1answer
24 views
DateTimeFormatter.parseLocalDate throws UnsupportedOperationException
The API for parseLocalDate says it will throw UnsupportedOperationException "if parsing is not supported". What does it mean by 'if parsing is not supported'? I'm looking through the source and can ...
0
votes
1answer
50 views
Obtaining the number of standard seconds in a minute with JodaTime
I need to obtain an integer, long or double that represents the number of standard seconds contained in a given number of standard minutes.
1 minute => 60 seconds
2 minutes => 120 seconds
..
...
1
vote
2answers
49 views
joda time consume too much memory
I use joda time in my code. When I add this line of code, the using memory will be increased 30M!
LocalDateTime _currDate = new LocalDateTime();
I found that nearly all the java programmers ...
0
votes
1answer
44 views
@JsonSerialize with generics
I have the following code to Serialize LocalDate of joda to a String:
public class JodaDateSerializer extends JsonSerializer<ReadablePartial> {
private static final String dateFormat = ...
1
vote
0answers
50 views
How can I convert timezone of one City to another?
I want to convert timezone of one city to another, using Joda DateTime, the process is straight forward, but I have a problem.
I am referring to Joda Database and I am unable to locate specific ...
0
votes
2answers
41 views
Converting a string to Date object
I am reading date values from a file in which i am reading it as string object.
The date values varies in many format for example sew below:
01-Mar-2012
01/12/2012
01-12-2012
01.12.2012
01.Mar.2012
...
0
votes
0answers
36 views
How to get dates of more than 1 weekday on some date interval on weekly basis
I have two LocalDates that represent some time interval. Now i have to get LocalDates of more than one weekday on a weekly basis for given date range. Date ranges are in months
Whats the easiest and ...
0
votes
1answer
43 views
Getting ISO8601 from JodaTime with milliseconds
I want to convert my date "2013-03-04T23:00:00" to "yyyy-MM-dd'T'HH:mm:ss.SSSZ" but I keep getting "2013-03-04'T'23:00:00.000+0000". Any help?
item.getEnd() is a XMLGregorianCalendar by the way.
...
1
vote
1answer
76 views
Overriding Joda DateTime toString in Groovy
So I'm using the JodaTime plugin in a grails project I'm implementing and I really don't like that it spits out the ISO8601 date format when I do a toString. I've been constantly putting toString and ...
0
votes
1answer
56 views
Joda-Time compareTo NoSuchMethod
I'm using joda-time to keep track of several different types of dates (DateTime and DateMidnight) in a Drools file. As part of the when condition, I get the date of an object and then compare the ...
0
votes
2answers
90 views
Converting Joda LocalTime to java.sql.Date
To make a JDBC query I need to pass date to it. The date is kept in Date field type of PostgreSql database, which represents specific day without any time.
As I need only date, I decided to use ...
1
vote
1answer
65 views
Programmatic Joda Time formatter
I am trying to create a Joda 2.2 DateTimeFormatter to refactor my code. The behaviour that I am trying to reproduce is
private String getSemesterLabel() {
StringBuilder sb = new ...
0
votes
1answer
54 views
Joda Time : Set day of the week and week of the month
I am using Joda time and i have a problem to set day of the week and week of the month. Suppose if i select April 23,2013 which is (3rd day of 4th week of the month) i want next date 3rd day of 4th ...
-1
votes
1answer
57 views
Which is better jodatime or prettytime [closed]
for those who have worked with time handling libraries, I want to ask wich is best (jodatime or prettytime).
I'm working on an application that requieres mainly, calculating how many days (or months ...
1
vote
1answer
57 views
How to list all days in a given month using Jodatime
I am looking for a way to list all days of a given month using Jodatime.
It would be great to have concrete code sample.
0
votes
1answer
50 views
How to set timezone in date field using jodatime library
I am using JodaTime2 library to create a date object with a given timezone as follow:
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
DateTimeZone tz = ...
0
votes
1answer
56 views
RRULE google-rfc-2445 with hour and seconds
I'm working with the implementation google-rfc-2445 (https://code.google.com/p/google-rfc-2445/) to generate the date which should be repeated following an event, not as a rule indicate (RRULE) that ...
3
votes
2answers
44 views
Does Jodatime have a method to get the months and days since some older date?
I would like to know exactly how many months and days(possibly years) some older date is from today. Is there a method to do that?
I know how to get the difference of the months, I know how to get ...
0
votes
1answer
57 views
How to convert server time to local time using Joda?
I'm developing application for mobile phone. So, after publish application will be ready for all users around the world. I need to adjust server time with local time of user. I thought maybe Joda (the ...
2
votes
1answer
50 views
Emulate PHP date calculation using Joda Time
I'm using the Joda Time library to subtract one month from a LocalDate:
LocalDate date = new LocalDate(2013, 3, 31);
System.out.println(date.minusMonths(1));
The result is 2013-02-28, which is what ...
6
votes
1answer
437 views
When time zone of China it goes, work as good Java will not?
As some game developing might use the date time which is in the past or in the future, and in any time zone of a date time emulation, even we never reach them in reality. For this assumption, not ...
0
votes
1answer
40 views
Joda DateTimeFormatter fails only when run by Jenkins
This is an odd one. My Joda DateTimeFormatter based parser works perfectly unless it's run by Jenkins. I can even log onto the jenkins, as the jenkins user, and successfully run the tests.
private ...
2
votes
1answer
53 views
Joda Time - Get name of time zone?
My time zone is UTC+03:00. It is stored inside a DateTimeZone object. How do I convert this to its real name, that is, East Africa Time/EAT
1
vote
2answers
238 views
Joda DateTime to Timestamp conversion
I am trying to change the value of Timestamp by DateTimeZone in Joda :
DateTime dt = new DateTime(rs.getTimestamp("anytimestampcolumn"),
...
3
votes
2answers
91 views
What's the equivalence in c# of TimeZone.getDefault().getID() in Java?
For one lives in Republic of Molossia, the following code in Java:
String TimeZoneId=TimeZone.getDefault().getID();
System.out.println(TimeZoneId);
may output with
America/Regina
I googled ...
1
vote
1answer
36 views
update Joda DateTime objet
Let's say I have a Joda DateTime object, represented by the following pattern
"MMM d, yyyy / HHmm"
Is there a way to update the DateTime "Day part" or "Time part" independently from two strings ?
...
2
votes
1answer
119 views
ISO 8601 Time Interval Parsing in Java
ISO 8601 defines a syntax for representing a time interval.
There are four ways to express a time interval:
Start and end, such as "2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"
Start and duration, ...
0
votes
3answers
34 views
Java joda api not working
I have used Joda date api in my project but it seems either I have done something wrong or Joda api is not returning me what i intend to get.
I want to get the difference in hours and minutes between ...
0
votes
1answer
120 views
How to list the timezone offset, timezone ID, and long name in Joda Time?
Time zone ids of Joda Time can simply be displayed with the following segment of code.
Set<String> zoneIds = DateTimeZone.getAvailableIDs();
for(String zoneId:zoneIds)
{
...


