Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
4answers
34k views

Simple conversion between java.util.Date and XMLGregorianCalendar

I'm looking for a simple method of converting between java.util.Date and javax.xml.datatype.XMLGregorianCalendar in both directions. Here is the code that I'm using now: import ...
11
votes
6answers
2k views

Is .NET giving me the wrong week number for Dec. 29th 2008?

According to the official (gregorian) calendar, the week number for 29/12/2008 is 1, because after the last day of week 52 (i.e. 28/12) there are three or less days left in the year. Kinda weird, but ...
5
votes
1answer
117 views

Can anyone think of a practical use for XMLGregorianCalendar.getEon()?

I came across the XMLGregorianCalendar class a while ago and I was impressed by the way it made GregorianCalendar look lightweight. ;) Recently, I noticed a method BitInteger getEon() which baffles ...
3
votes
2answers
311 views

Getting current datetime using Calendar.getInstance() vs new GregorianCalendar()

What might be the difference between getting datetime using Calendar.getInstance() vs new GregorianCalendar()?
3
votes
3answers
975 views

Creating a GregorianCalendar instance from milliseconds

I have a certain time in milliseconds (in a Timestamp object) and I want to use it to create a GregorianCalendar object. How can I do that? EDIT: How do I do the reverse?
3
votes
4answers
851 views

How can I convert from Gregorian Calendar to Unix Time, in Java?

I am in need of a method to convert GregorianCalendar Object to Unix Time (i.e. a long). Also need a method to convert Unix Time (long) back to GregorianCalendar Object. Are there any methods out ...
3
votes
3answers
371 views

Java GregorianCalendar What am I doing wrong? Wrong date?

Hello I have a problem with GregorianCalendar. What is wrong in there? How outcome is 2010/6/1 and not 2010/05/31? package test; import java.util.Calendar; import java.util.GregorianCalendar; ...
2
votes
3answers
63 views

Should I use GregorianCalendar or Date for a birthday field?

I'm a little bit confused about using the class GregorianCalendar and Date. What is the difference? For instance: I have a field in a Person object that represents the date he was born. Do I have ...
2
votes
1answer
345 views

Jaxb DateTime without timezone

I'm trying to map a xml DateTime element using jaxb so that it does not care about timezone information at all. Either by rejecting the input, or by treating it as server default timezone. e.g. ...
2
votes
3answers
3k views

Java: What/where are the maximum and minimum values of a GregorianCalendar?

What are the maximum and minimum values of a GregorianCalendar? Are they in a constant like Integer.MAX_VALUE, or maybe GregorianCalendar.get(BLAH)? In a nutshell, how can I create a ...
2
votes
3answers
296 views

Converting a birthdate into milliseconds

How do I take a birthdate entered by a user and turn into milliseconds so that I can calculate how old they would be on a different planet Here is the code I have so far: DateFormat df = new ...
2
votes
2answers
2k views

Convert a string to a GregorianCalendar

How do a I take an input birthday string such as 02 26 1991 and make it into a Gregorian Calendar? I tried parsing it first but it keeps giving me an error message so I'm not quite sure what I'm ...
1
vote
4answers
79 views

Custom gregoriancalendar month

How do I instantiate the calendar depending on the input of the user? I've tried: Calendar cal = new GregorianCalendar(2011, Calendar.t.getMonth(month), 1); But didn't do the trick. import ...
1
vote
0answers
205 views

Get day of the week from date - GregorianCalendar problem

I have a date and I need to know the day of the week, so I used a GregorianCalendar object but I get back some dates that are wrong (1 on 5 is wrong, seems random). GregorianCalendar calendar = new ...
1
vote
1answer
44 views

Android: Gregorian Calander problem

I am getting confuse with using Gregorian. I am using GregorianCalendar to get the current date and setting the future date. The current month : it prints me the month as 8 rather 9 where 9 is my ...
1
vote
2answers
267 views

Java: GregorianCalendar returns wrong data

I want to calculate the monday of a specific week number of a year. This is how I do it: final GregorianCalendar calendar = new GregorianCalendar(Locale.GERMANY); calendar.clear(); ...
1
vote
1answer
204 views

How to get today's date in the Gregorian format when phone calendar is non-Gregorian?

NSDate *now = [[NSDate alloc] init]; gives the current date. However if the phone calendar is not Gregorian (on the emulator there is also Japanese and Buddhist), the current date will not be ...
1
vote
1answer
88 views

How to get the week of the year in some cultures?

I want to get the week of a year (in current culture), so I do: var week = CultureInfo.CurrentCulture.Calendar .GetWeekOfYear(DateTime.Now, CalendarWeekRule.FirstDay, ...
1
vote
1answer
147 views

Issue with adding hours to Gregorian Calendar

I have a Grails application I created a Gregorian Calendar GMT date. The time of day was 11:00:00 PM GMT. I added 3 hours to the Gregorian Calendar object and it changed the time of day to 2:00:00 AM ...
1
vote
3answers
292 views

java gregorian calendar timer

I have this java program which calculates the time that the person took to respond to the confirm dialog box. But it seems that both time1 and time 2 gets the same value. What have I done wrong here: ...
1
vote
3answers
159 views

About GregorianCalendar : the same input but different output in java

I want to use milliseconds to set a new date in my program,but it doesnt work. Is there anybody can tell me why it doesnt work? Calendar r_1 = new GregorianCalendar(2011,0,1); ...
1
vote
1answer
420 views

Gregorian to Hebrew

How to convert a gregorian date into the equivalent hebrew date? Also please tell about these calendars as I am not having much knowledge of these.
1
vote
2answers
307 views

How can i get the date from my calender data?

Here i am getting one Map. That map contain the Date of birth detail of person as a GregorianCalendar. For example My Map is {motherEmailID=null, coreType=Ticket, _NULL=null, ...
1
vote
1answer
439 views

How can I determine if a string is a Hebrew or Gregorian date?

I have a string value that contains or a Hebrew date, or a Gregorian date. How can I determine if it's Gregorian or Hebrew in C#?
1
vote
1answer
1k views

Problem with Gregorian Calendar hour of day in java

I'm using a Gregorian Calendar to set a specific date and time to an application using the set function of the Gregorian Calendar. When i use the getTime() method, it gives me the right output ...
1
vote
4answers
245 views

Is there a way to add methods to GregorianCalendar in Java?

I'd like to make a method called "isBetween" returning a boolean, seeing if a GregorianCalendar date falls between two others. Alternatively, I'd like to just define operators of < and > for the ...
1
vote
2answers
171 views

How to set a BCE year using GregorianCalendar

I have an assignment that converts dates from one calendar system to another. The documentation for GregorianCalendar seems to suggest that you can use dates with BCE years, but I have no idea how. ...
1
vote
2answers
143 views

Have you ever had a requirement for a non-Gregorian calendar date, in a database application?

Context: I notice that the major databases support only the Gregorian calendar. Thus, it would seem difficult to build a database app with anything other than the Gregorian calendar. If you have ever ...
1
vote
7answers
759 views

Last sunday of a year in c#

How can I get date of last sunday of a year in C#?? Will gregoriancalendar class be of help?
1
vote
1answer
708 views

Creating a new NSCalendar calendar

I want to be able to convert between the Gregorian and Julian calendars (note: not "julian date") using NSCalendar on the iPhone. How can I subclass NSCalendar to use the Julian calendar? I want to do ...
0
votes
1answer
29 views

Sql query to get the arabic date for the gregorian date from a database

I have a table with columns Hijri date and Gregorian date. I want a select query to fetch the Hijri date from this table by passing the Gregorian date. I will pass the Gregorian date as a parameter ...
0
votes
0answers
28 views

Converting to and from Hindu calendar

How can I convert unix time to Hindu calendar­Wikipedia time and the other way round in php? I know I can convert to Hebrew and Jewish. But Hindu is not an option.
0
votes
0answers
21 views

how to convert String to GregorianCalendar using Joda-Time

I think the title speaks for itself. I really need help with this, I've tried a bunch of things, but it just won't work. Last thing I tried was something like this: public class CalendarUtils { ...
0
votes
3answers
55 views

why does it always give the same time?

I used the following program to get the clock.What it turned out to be is a static clock ? Why is it so ? import java.util.*; import java.awt.*; import javax.swing.*; class tester { JFrame fr = ...
0
votes
0answers
70 views

Matlab code to transfer between gregorian-hijri calendars

Is there a Matlab code that transfer the date ( day,month,year) from gregorian to Hijri (Islamic) calendar and also from hijri to gregorian calendar, Let's assume that we want to change the ...
0
votes
0answers
44 views

How to add the calendar control to the app

I am new calendar concept. I want to add the day calendar counter to my app. i find one solution i.e., Ancal. I try to integrate to my app. but i didn't understand how to integrate this.please can ...
0
votes
1answer
68 views

Why does the Date class in Java display a year after subtracting 1900 from it?

Since the Date class in Java was deprecated, I had quite less frequently been using it but when I used it, felt that it might sometimes irritate someone as it displays the current year after ...
0
votes
3answers
95 views

c++ Gregoraian and Julian calendar inheritance

I have this dilemma where i need to choose between differant types of inheritance for the Gregorian and Julian calanders. I want to have one class named Date as a base class. My question is as ...
0
votes
3answers
170 views

GregorianCalendar or just Calendar

Although i read a lot about the calendar and gregoriancalendar, still some complications arise. Which is better or what can you recommend to use? I cant not figure out the difference. ...
0
votes
4answers
146 views

comparing Gregorian calendar date values

I am trying to set up part of a program that allows a person to view transactions of an account based on the date of the transaction. The user enters the month day and year to view transactions and ...
0
votes
2answers
1k views

Calendar's GregorianCalendar methods setting date to previous day

I'm having a strange issue with abstract Calendar class using the GregorianCalendar method. For some reason using "calendar.set" is returning a date from the previous day. See code below for example ...
0
votes
1answer
90 views

Memory Leak with Date Stuff (__NSCFCalendar, icu::GregorianCalendar)

I am having a small method returning the first week-day of a given date: - (NSDate*) getFirstDayOfTheWeekFor:(NSDate*)date { NSCalendar *gregorianCalender = [[[NSCalendar alloc] ...
0
votes
2answers
312 views

adding Gregorian Calendar dates to an array and retrieving the date to print in a string

I am writing a credit card program. I want the program to use the current date every time the method is used to make a purchase and put the date into the array private GregorianCalendar transDate; ...
0
votes
1answer
569 views

GregorianCalendar / Calendar and setting the HOUR field oddity

I'm trying to create a 'fixed' time (midnight in 24 hour clock format, i.e., 00:00:00) to set as a string for a SQL SELECT query using the the following... SimpleDateFormat sdf = new ...
0
votes
6answers
134 views

Java Calendar Setting Incorrectly

I'm having some trouble with Java's Calendar. I'm parsing some data from a txt file, and need to create a date. After completion of the following code: tmpYear = Double.parseDouble(row[yearIndex]); ...
0
votes
5answers
354 views

Gregorian Calendar

I faced a weird problem with day light savings. I have a java program scheduled to run on every day on 00:05 AM time, but yesterday it ran on 23:05. I am using Gregorian calendar to schedule this ...
0
votes
1answer
708 views

I'm having problems using dates in Android

I am trying to compare dates and I have found where my code goes wrong, but I don't know why. I am trying to compare a date with todays date (using Gregorian Calendars only). I have printed out ...
0
votes
3answers
532 views

Java GregorianCalendar and Calendar misplace weekends, days in a month for August and September, 2010

I'm trying to use either Calendar or Gregorian Calendar to iterate and create a date grid. However, both of them seem to think that August, 2010 has 30 days, and that September 2 and 3 are weekends. ...
0
votes
0answers
2k views

XMLGregorianCalendar to GregorianCalendar and back - inconsistent results

Consider the output from the code below with and without the call to get Calendar.HOUR_OF_DAY: XMLGregorianCalendar cal = datatypeFactory.newXMLGregorianCalendar("1994-08-10T00:00:00Z"); ...
0
votes
1answer
172 views

Google App Engine JDO error caused by GregorianCalendar?

My class looks like this : import javax.jdo.annotations.IdGeneratorStrategy; import javax.jdo.annotations.IdentityType; import javax.jdo.annotations.PersistenceCapable; import ...

1 2