Tagged Questions
3
votes
5answers
2k views
Why does a new SimpleDateFormat object contain calendar with the wrong year?
I came upon a strange behavior that has left me curious and without a satisfactory explanation as yet.
For simplicity, I've reduced the symptoms I've noticed to the following code:
import ...
2
votes
2answers
110 views
Java day of the week from string
I have this simple code:
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date date = format.parse("2011-10-29");
calendar.setTime(date);
Log.d("Debug","Day of the week = ...
2
votes
4answers
150 views
Java Date determine if DAY is greater
I have time stamps as string format Sun Jul 10 17:47:55 EDT 2011
I need to determine if the current DAY is greater than the stored day.
I will get the current day with
Date currentDate = new Date();
...
1
vote
3answers
71 views
Java date - 12am is stored as 24?
So me and my partner have been working on this project for a while now. We work with dates A LOT in this project, and we recently noticed an issue, and we are rather deep in at this point.
We store ...
1
vote
3answers
265 views
Java Calander date manipulation problem
I am try to get the current date/time in in following format,
SimpleDateFormat format = new SimpleDateFormat("yyyy.MM.dd G 'at' HH:mm:ss z");
// should display something similar to 2001.07.04 AD at ...
1
vote
3answers
3k views
Strange problem with timezone, calendar and SimpleDateFormat
Let's consider the following code:
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss dd/MM/yyyy", Locale.US);
long start = sdf.parse("10:30:00 30/09/2009").getTime();
long end = ...
0
votes
3answers
63 views
How to convert date and time to user timezone
Calendar cal = Calendar.getInstance();
cal.setTimeZone(TimeZone.getTimeZone("PST"));
cal.setTime(new Date());
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss a");
Date resultdate = ...
0
votes
1answer
96 views
Creating a custom week counter in Java?
I am trying to create a custom week counter but am having quite a lot of trouble and feel like I am going about it all wrong. The method should take in a string date that is in yyyy-MM-dd format and ...
-2
votes
1answer
55 views
making a calendar object a string
I'm a newbie to this so be gentle!
I'm trying to parse a calendar object which I have incremented by 1 month to a string so that I can add it to a String Builder and eventually print it using a ...