
05-14-2008, 12:16 PM
|
|
Member
|
|
Join Date: Jan 2008
Posts: 83
Rep Power: 0
|
|
Date convertion in java
Is it possible to convert integer into datetime?Can anyone say me how to convert from integer to date in java
|
|

05-14-2008, 12:20 PM
|
 |
Senior Member
|
|
Join Date: Jan 2008
Location: Cebu City, Philippines
Posts: 540
Rep Power: 3
|
|
|
Where did you get that integer?
All i know is a long type value that represents date & time.
and can be use as a reference for representing date and time in Calendar, GregorianCalendar, Date,DateFormat and SimpleDateFormat classes....
__________________
A specific, detailed, simple, well elaborated, and "tested before asking" question may gather more quick replies. hopefully
Last edited by sukatoa; 05-14-2008 at 12:23 PM.
|
|

05-14-2008, 12:51 PM
|
 |
Senior Member
|
|
Join Date: Mar 2008
Location: Delhi, India
Posts: 195
Rep Power: 2
|
|
may be this what you wanted:
|
Code:
|
new Timestamp( new Long(myIntValue).longValue() ); |
or may be this one suits you:
|
Code:
|
new Date( new Long(myIntValue).longValue() ); |
P.N. Timestamp is in java.sql package
__________________
i am the future
|
|

05-14-2008, 01:13 PM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
|
|
This is also possible for a long value. But it's not safe. Suns' deprecated it since version 1.1 But still you can use it.
|
Code:
|
long someLong=1210759966477L;
Date anotherDate=new Date(someLong);
System.out.println(anotherDate.getDate()); |
|
|

05-14-2008, 01:25 PM
|
 |
Senior Member
|
|
Join Date: Mar 2008
Location: Delhi, India
Posts: 195
Rep Power: 2
|
|
replacement?
as this is depricated, What is the replacement of this excerpt:
|
Code:
|
new java.sql.Date ( year, month, date ); |
?
or where can i find which new methods we should use for the methods which are depricated?
__________________
i am the future
|
|

05-14-2008, 01:30 PM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
|
|
Or dear, you have to use
|
Code:
|
Calendar.get(Calendar.DAY_OF_MONTH). |
All those things you can found in javadoc. 
By the I got a quiz on it now
|
|

05-14-2008, 01:37 PM
|
 |
Senior Member
|
|
Join Date: Mar 2008
Location: Delhi, India
Posts: 195
Rep Power: 2
|
|
i don't want this actually,
|
Code:
|
Calendar.get(Calendar.DAY_OF_MONTH). |
i am having my own date, how to convert that?
__________________
i am the future
|
|

05-14-2008, 01:45 PM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
|
|
|
What you mean? Looking to convert an int value to date?
|
|

05-14-2008, 02:07 PM
|
|
Member
|
|
Join Date: Jan 2008
Posts: 83
Rep Power: 0
|
|
|
I'll get date value from the xml as string and convert it into date and then to integer and do drawing in applet using that value.Again,i have to update the new integer value as date in the database.Here where i'm struck up..i don't know how to convert an int value into date..Please help me..
|
|

05-14-2008, 02:42 PM
|
 |
Senior Member
|
|
Join Date: Mar 2008
Location: Delhi, India
Posts: 195
Rep Power: 2
|
|
preethi
see post #3
__________________
i am the future
|
|

05-14-2008, 03:14 PM
|
|
Member
|
|
Join Date: Jan 2008
Posts: 83
Rep Power: 0
|
|
|
Quote:
|
|
Date date = new Date(new Long(12234).longValue());
|
If i out put the date,its giving the same value for anykind of data as:Thu Jan 01 05:30:12 GMT+05:30 1970
|
|

05-14-2008, 07:44 PM
|
 |
Senior Member
|
|
Join Date: Jan 2008
Location: Cebu City, Philippines
Posts: 540
Rep Power: 3
|
|
|
Quote:
|
|
I'll get date value from the xml as string and convert it into date
|
date = xml_date_value_as_String;
|
Quote:
|
|
and then to integer
|
integer = convert(date) ====> What do you mean?
im just curious about what's going on in your implementation...
Maybe im out of topic but, could you post an example of
xml date as string?
integer from date(that represents xml date)?
|
Quote:
|
|
and do drawing in applet using that value.
|
Ahah?!!
|
Quote:
|
|
Again,i have to update the new integer value as date in the database.
|
is integer from date changed? or what you are talking about is another integer? Why is it updated? where did it came from?
|
Quote:
|
|
Here where i'm struck up..i don't know how to convert an int value into date..Please help me..
|
ok, can you also show that integer?(That would be used to convert into date) and the expected date pattern also....
__________________
A specific, detailed, simple, well elaborated, and "tested before asking" question may gather more quick replies. hopefully
|
|

05-15-2008, 05:54 AM
|
|
Senior Member
|
|
Join Date: May 2008
Location: Makati, Philippines
Posts: 234
Rep Power: 2
|
|
Here is an example. I hope it helps
|
Code:
|
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
private SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
private Date date2;
public static void main(String[] args) {
Main main = new Main();
main.date();
}
public void date(){
int year=2008,month=05,day=15;
\\OR you can use
\\String year="2008",month="05",day="15";
try {
date = format.parse(year+"-"+month+"-"+day);
} catch (ParseException e) {
e.printStackTrace();
}
System.out.println(format.format(date));
}
} |
|
|

05-15-2008, 06:29 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
|
|
Actually you formatted a string in to date. Even you have int values, built a string and formated. Not bad at all.
But in our original post, try to convert an int value to date. What you can do if the date has in that format, where I discussed in post #4.
|
|

05-15-2008, 08:09 AM
|
|
Senior Member
|
|
Join Date: May 2008
Location: Makati, Philippines
Posts: 234
Rep Power: 2
|
|
Post #4 is a direct approach from int to date. I tried to do it in my code but my problem is that is my date is stored in DB. It would be a lot of process to convert it to 'long' and compare it to another date. My friend here uses Strings, he converts everything to String before he manipulate it =P
I guess converting any format to date format is in the Programmers perogative.
As you see Preethi, there are lots of ways to do it in Java. You just need to Explore. =P
__________________
Mind only knows what lies near the heart, it alone sees the depth of the soul.
|
|

05-15-2008, 08:23 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
|
|
Ya I know that. All those implementation depends on the application requirements.
Why you worried about that, storing in DB. Your code can do that.
|
|

05-15-2008, 08:31 AM
|
|
Senior Member
|
|
Join Date: May 2008
Location: Makati, Philippines
Posts: 234
Rep Power: 2
|
|
|
Actually, my code will be used to maintain several databases and accepts different input files. Here they are using Oracle as their Back end software. The issue with Oracle is about their date. Since i cant change the original configuration of the company's date, i have to do something. Oracle doesnt accept the format m/d/yyyy. its most likely in mm/dd/yyyy format and they dont accept the '0' value. Like for example 01/02/2008. It will give me an error saying there is a null value. I made correction by creating my own date checker/converter. I hope Oracle do something about that. =P It took me about 2-3days just to fix that Date problem. Is there another easier way to Fix that?
__________________
Mind only knows what lies near the heart, it alone sees the depth of the soul.
|
|

05-15-2008, 09:44 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
|
|
|
Sorry pal. I don't know much about Oracle. Most of the time I work on with MySql, and haven't found such as scenario before.
|
|

05-15-2008, 09:52 AM
|
|
Senior Member
|
|
Join Date: May 2008
Location: Makati, Philippines
Posts: 234
Rep Power: 2
|
|
|
Thanks. MySql is Flexible in terms of Date data types than Oracle. Im still new to Oracle database, i dont have any proper training in it. Anyways, I think Preethi can now mark this [SOLVED]. =)
__________________
Mind only knows what lies near the heart, it alone sees the depth of the soul.
|
|

05-15-2008, 10:56 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
|
|
|
Ya, it's much better if she got the point.
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT +2. The time now is 04:46 AM.
|
|