Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I created a date object in java . When i do S.o.p ; it shows something like: date=Tue Aug 09 00:00:00 IST 2011. As a result of it, my excel file is getting one day lesser. 27 feb becomes 26 feb and so on. I think it must be because of time . how can i set it to something like 5:30 pm? thanks in advance

share|improve this question

3 Answers

Calendar cal = Calendar.getInstance();
cal.set(Calendar.HOUR_OF_DAY,17);
cal.set(Calendar.MINUTE,30);
cal.set(Calendar.SECOND,0);
cal.set(Calendar.MILLISECOND,0);

Date d = cal.getTime();

Also See

share|improve this answer
Thanks. I got the answer . I have posted the link below. – CyprUS Mar 2 '11 at 9:23
up vote 1 down vote accepted

I got the answer Java Date cut off time information Stack overflow is awesome!!!

share|improve this answer

Can you show code which you use for setting date object? Anyway< you can use this code for intialisation of date:

new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").parse("2011-01-01 00:00:00")
share|improve this answer
DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); Date date = (Date)formatter.parse(st[length]); System.out.print("date="+date); cal.setTime(date); cal.set(Calendar.HOUR_OF_DAY, 17); cal.set(Calendar.MINUTE, 30); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); date = cal.getTime(); System.out.print("date="+date); – CyprUS Mar 5 '11 at 6:57
I am setting the time 5:30 pm. – CyprUS Mar 5 '11 at 6:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.