The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
57 views

Java: Speeding up and slowing down time

I'm trying to figure out the logic to set an arbitrary time, and then have that time "play back" at different speeds (like .5x or 4x real time). Here is the logic I have thus far, which will playback ...
1
vote
4answers
83 views

Is the toString() method in java.util.Date locale independent?

try { SimpleDateFormat strTemp = new SimpleDateFormat("ddMMMyy", Locale.US); Date reasult = strTemp.parse(input); String checkDate = reasult.toString().substring(8, ...
-2
votes
3answers
107 views

Convert unix timestamp between different timezones and different DST in Java

PROBLEM SOLVED External device was computing and sending non-standard 2 hours shifted timestamp, which hugely confused me and started this thread. TIMESTAMP BY ITSELF IS NOT AFFECTED BY TIMEZONES , ...
1
vote
1answer
130 views

java.util.date bug?

Is there a bug is java.util.Date? While doing some testing, I was setting the milliseconds to 2147483647 which should give me a date of 2038-01-19 03:14:07 but it is returning 1970-01-25 20:31:23. ...
0
votes
1answer
210 views

Java - Calendar / Date difference - Find difference down to seconds

Trying to make a little Countdown program in Java. I am working on the finding the difference between the dates part of the app, and for some reason I am only getting the days. I want the days, ...
0
votes
3answers
336 views

How to convert java.sql.Date to java.util.Date in dd/MM/yyyy format?

I am storing a date to database by converting util date to sql date by using following code SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy"); sdf.setLenient(false); java.sql.Date ...
1
vote
1answer
413 views

Hibernate Date mapping to SQL Server datetime rounds by 1ms

I have searched a lot on stackoverflow and found out that mapping java.util.Date to SQL databases often causes problems and possible solutions are to Create own (use jodatime) hibernate UserType ...
1
vote
1answer
111 views

Groovy ( Java ) store time with milliseconds in TransactSQL Database ( Microsoft SQL Server 2008 R2 )

Hello I have a Grails application which uses so far java.util.Date to store a timing value into a Microsoft SQL Server Database. I load the date values form a .csv file with that format: ...
0
votes
2answers
790 views

String -> java.util.Date -> java.sql.Date (with time stamp)

Here is my problem: I have a user input a date like: 2012-12-24 (string) I concatenate a time to that string, and convert to java.util.Date My code looks like: String tempstartdate = startdte; ...
0
votes
1answer
382 views

How to display current date in text format on textview in android using android.text.format?

I am getting result as 12/1/2012 but I want to display as "Saturday December 1,2012" my code is as below please give me a solution if you have...... Date date = new Date(); myDateString = ...
0
votes
2answers
219 views

Java DateFormat in Date Object

There is a simple problem of Date Format Conversion. In java when we print date object its in this format "Tue Nov 13 18:34:35 PKT 2012" But I want this date to be shown in this format "2012-11-13 ...
6
votes
1answer
2k views

new Date().getTime() not returning timestamp in miliseconds

I've a class which is using java.util.Date class to create a date object and using getTime() to get current miliseconds. I've seen in the Java documentation that getTime() returns the miliseconds, ...
2
votes
2answers
195 views

how can i fetch current date and time of my system in java without using any predefined classes or libraries?

how can i fetch current date and time of my system in java without using any predefined classes or libraries? i am actually making a Date ADT of my own from scratch as java.util.Date or ...
3
votes
3answers
2k views

JSTL Date comparison

I've seen some posts about date comparisons in JSTL, but I still can't get it to work. I have a date field, which I want to test whether is after 01-01-1970. <c:if test="${user.BirthDate > ...
1
vote
1answer
89 views

how to convert string date in to Date class object

I have the date in the string format like this "Sat Sep 8 10:13:09 GMT+0530 2012", can anybody help me how to convert this string date in to Date class object.
3
votes
3answers
1k views

How to subtract X day from a Date object in Java?

I want to do something like: Date date=new Date(); //current date date=date-300;//substact 300 days from current date and I want to use this "date" How to do it?
0
votes
2answers
177 views

Error while calculating java Date difference

Calculating the difference between two dates (java.util.Date) in terms of no. of days look like very simple and we can find different ways to do that. I used the following code to calculate the date ...
0
votes
2answers
324 views

Date/time conversion/arithmetic

I've below code in Java 1.7: DateFormat df = DateFormat.getInstance(); Date startDate = df.parse("07/28/12 01:00 AM, PST"); The above date time (07/28/12 01:00 AM, PST) is in the properties file ...
0
votes
2answers
150 views

Java date older than 1923

So I have a strange problem, I have a java swing application that has the date 10/11/1922 00:00:00 MST but when it sends that date to my backend glassfish server via RMI the date becomes 10/10/1922 ...
2
votes
3answers
292 views

using java epoch seconds in negative

I m writing a program which involves converting java.util.Date to java.sql.Date... I've done it using getTime() method... java.util.Date dt = new java.util.Date(); ...
0
votes
2answers
2k views

Spring 3.0 exception converting String to java.util.Date on POST

I'm hoping someone can help me since I have been banging my head against a wall for a couple of days on a issue which seems straightforward and which has been documented in other threads on the web. ...
1
vote
4answers
3k views

Convert java.sql.Timestamp to java.sql.Timestamp in another timezone

I am in need to manipulate on java.sql.Timestamp. Input to the function is: Formatted DateTime in java.sql.Timestamp [Possible date formats are: MM/dd/yyyy hh:mm:ss aa, MM/dd/yyyy hh:mm:ss, ...
2
votes
2answers
447 views

How to save DateTime as Date with TimeZone offset included?

I have some DateTime including TimeZone Europe/Vienna (+0200). It is fetched by this method: settlementService.getPendingPeriodStart() and look with toString like this: ...
-2
votes
3answers
129 views

Get date representation in seconds?

I am using an API which requires a date parameter as a number of seconds, an int. My problem is that I currently store this time in java.util.date and I was wondering if there is some way to convert ...
0
votes
1answer
1k views

Convert a string to java.util.date AND preserve the timezone information

Before anybody downvotes this question, I have browsed the web and StackOverflow for the situation that I am facing and did not find anything, hence I am posting as a new question. I have a situation ...
3
votes
1answer
111 views

Convert a dateString from a browser to java.util.Date?

I am facing an issue with parsing/converting a dateString from browser to Date format in Java. The following are some of the values that I got from the browser. dateStr = "01-01-2010 05:06:22"; ...
1
vote
2answers
2k views

Conversion of Date with AM/PM

I have the timestamp in form of 03-AUG-12 08.15.00.000000000 PM -05:00 I am unable to get a String representation in form on yyyy-MM-dd HH:mm:ss. It is very urgent. Here is my code : public static ...
1
vote
5answers
873 views

How to get the most recent of a set of date variables in java

I have about 8 date variables (java.util.Date) with different variable names. What's the most efficient/best way of choosing the most recent (max) of these dates?
0
votes
3answers
979 views

Java : SimpleDateFormat - Unable to parse a string to a date of desired format

I am trying to parse one string to a format yyyy-MM-dd and one to yyyy-MM-dd HH:mm:ss. I am using SimpleDateFormat. I have used the same method successfully earlier, but now something is going wrong. ...
0
votes
1answer
5k views

Inserting date in a database using PreparedStatement in Java

I have a form which captures a date that the user input in a JFormattedTextField. Then the Date need to be stored in a database (postgresql) using PreparedStatement. I am having error messages at the ...
0
votes
3answers
2k views

JodaTime convert from Java.util.Date to DateTime (or LocalDate)

I'm running into a problem when I construct a DateTime (or LocalDate). I'm converting old code to use joda internally to make things more sane. However I'm running into the +1900 issue... This ...
2
votes
4answers
2k views

How to add minutes to my Date

I have this date object: SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd HH:mm"); Date d1 = df.parse(interviewList.get(37).getTime()); value of d1 is Fri Jan 07 17:40:00 PKT 2011 Now I am ...
0
votes
2answers
2k views

How to retreive DATETIME format from Sqlite database

I have stored date (java.util.date object) in a DATETIME field of a Sqlite table. Now, how to retrieve this date which would be of the same format as java.util.date. Actually I want to compare the ...
0
votes
3answers
919 views

static final Date field in a java class

We've a public static util method which can parse a string and return a Date object, but it also throws ParseException in case the string parsed cannot be converted to a Date object. Now, in another ...
10
votes
1answer
1k views

Why shouldn't I use date4j instead of joda java.util.Calendar or jsr 310?

I recently came across date4j, an extremely simple library (essentially a single class) for working with dates in Java. Conceptually, I really like the "idea" of date4j. In fact, after reading both ...
4
votes
3answers
238 views

java.util.Date's behavior

Foo a; ... Date b = a.getDate(); Date c = new Date(b.getTime()); if (b.equals(c)) System.out.println("equal"); else System.out.println("not equal"); System.out.println(b.toString()); ...
9
votes
2answers
4k views

Do we have a TimeSpan sort of class in Java

I was just wondering if there is a need of TimeSpan in java.util so that I can define how much hours,minutes and seconds are there in between these two times. From this TimeSpan we can have a time ...
7
votes
4answers
339 views

Good Reason to use java.util.Date in an API

Are there any specific reasons to use a Date class in an API (for example, in an employee birth date field) rather that a long or Long. There is some discussion of this in: java-date-vs-calendar, ...
2
votes
1answer
1k views

Problem converting java.util.Date to org.joda.time.LocalDateTime

import org.joda.time.LocalDateTime; import java.util.Date; With this date or with the following ones it's all OK: new LocalDateTime(new Date(0,0,1,2,30)) — 1900-01-01T02:30:00.000 new ...
10
votes
4answers
59k views

Convert java.util.date to string

I am wanting to convert a java.util.date object to a string. The format is "2010-05-30 22:15:52" Thanks,
1
vote
2answers
628 views

Invalid value 0 for Month field. while converting util.date to XMLgregoriandate?

I am converting java.util.Date to XMLGregorianDate. When I print My util date on console, it displays: Date: 2011-01-25 20:33:46.54 But after conversion, when I try to use it, gives me ...
0
votes
2answers
296 views

simple java datestamp question

I am looking to capture the current date for a date of transaction variable. this is the format I'm looking for. I know simpleDateFormat works well with my db too. here's what I've used to input ...
0
votes
2answers
152 views

Concise way of getting date from java.util.date

I'm trying to retrieve the date only from a java.util.date. I know I can set the time to 0 but I'm searching for a cleaner, more concise way if possible. Does this exist? Thanks! Krt_Malta
2
votes
2answers
9k views

getting java.lang.IllegalArgumentException: Illegal pattern character 'o'? while parsing java.text.SimpleDateFormat

I wanted to convert from string to java.util.Date. for the same purpose I used following code, String timeStamp = "Mon Feb 14 18:15:39 IST 2011"; DateFormat formatter = new SimpleDateFormat("dow mon ...
4
votes
6answers
8k views

java.util.Date: seven days ago

I have a report created in Jasper Reports which ONLY recognizes java.util.Date's (not Calendar or Gregorian, etc). Is there a way to create a date 7 days prior to the current date? Ideally, it would ...
5
votes
3answers
7k views

Finding the interval between two java.util.date [duplicate]

Possible Duplicate: Calculating the Difference Between Two Java Date Instances hi, I have two object of type java.util.date. Date StartDate; Date EndDate; Both object have a date and ...
4
votes
5answers
2k views

How would you represent date of birthday in your java model?

And wait, don't rush to answer "java.util.Date", consider the following scenario. Person object having 2 fields: "birthday" and "nextMeeting" both java.util.Date. Now birthday stored in database as ...
2
votes
2answers
2k views

Google App Engine, JDO, use Date in filter

In my application, I would like to fetch a set of entities from the Datastore, that have a Date field set to a date before the present moment. I do realize, that one of the ways of doing that is by ...
0
votes
1answer
919 views

GAE Datastore Java data type for date/time values

Both java.sql.Date and java.util.Date return the following when trying to persist them in the datastore. javax.jdo.JDOUserException: Attempt to handle persistence for object using datastore-identity ...
10
votes
3answers
25k views

Java - How to set timezone of a java.util.Date

I have parsed a java.util.Date from a String but it is setting the local timezone as the timzone of the date object. The timezone is not specified in the String from which Date is parsed. I want to ...