Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-14-2008, 12:16 PM
Member
 
Join Date: Jan 2008
Posts: 83
Rep Power: 0
Preethi is on a distinguished road
Default 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
Bookmark Post in Technorati
Reply With Quote
  #2 (permalink)  
Old 05-14-2008, 12:20 PM
sukatoa's Avatar
Senior Member
 
Join Date: Jan 2008
Location: Cebu City, Philippines
Posts: 540
Rep Power: 3
sukatoa is on a distinguished road
Send a message via Yahoo to sukatoa
Default
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.
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 05-14-2008, 12:51 PM
rjuyal's Avatar
Senior Member
 
Join Date: Mar 2008
Location: Delhi, India
Posts: 195
Rep Power: 2
rjuyal is on a distinguished road
Default
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
Bookmark Post in Technorati
Reply With Quote
  #4 (permalink)  
Old 05-14-2008, 01:13 PM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Default
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());
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
Someone helped you? their helpful post.
Help:Forums FAQ|How To Ask Questions The Smart WayResources:The Java Tutorials|Glossary for Java|NetBeans IDE|Sun DownloadsWeb:WritOnceTips:Is your IDE the best?|Which Application Server?
Bookmark Post in Technorati
Reply With Quote
  #5 (permalink)  
Old 05-14-2008, 01:25 PM
rjuyal's Avatar
Senior Member
 
Join Date: Mar 2008
Location: Delhi, India
Posts: 195
Rep Power: 2
rjuyal is on a distinguished road
Default 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
Bookmark Post in Technorati
Reply With Quote
  #6 (permalink)  
Old 05-14-2008, 01:30 PM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Default
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
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
Someone helped you? their helpful post.
Help:Forums FAQ|How To Ask Questions The Smart WayResources:The Java Tutorials|Glossary for Java|NetBeans IDE|Sun DownloadsWeb:WritOnceTips:Is your IDE the best?|Which Application Server?
Bookmark Post in Technorati
Reply With Quote
  #7 (permalink)  
Old 05-14-2008, 01:37 PM
rjuyal's Avatar
Senior Member
 
Join Date: Mar 2008
Location: Delhi, India
Posts: 195
Rep Power: 2
rjuyal is on a distinguished road
Default
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
Bookmark Post in Technorati
Reply With Quote
  #8 (permalink)  
Old 05-14-2008, 01:45 PM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Default
What you mean? Looking to convert an int value to date?
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
Someone helped you? their helpful post.
Help:Forums FAQ|How To Ask Questions The Smart WayResources:The Java Tutorials|Glossary for Java|NetBeans IDE|Sun DownloadsWeb:WritOnceTips:Is your IDE the best?|Which Application Server?
Bookmark Post in Technorati
Reply With Quote
  #9 (permalink)  
Old 05-14-2008, 02:07 PM
Member
 
Join Date: Jan 2008
Posts: 83
Rep Power: 0
Preethi is on a distinguished road
Default
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..
Bookmark Post in Technorati
Reply With Quote
  #10 (permalink)  
Old 05-14-2008, 02:42 PM
rjuyal's Avatar
Senior Member
 
Join Date: Mar 2008
Location: Delhi, India
Posts: 195
Rep Power: 2
rjuyal is on a distinguished road
Default preethi
see post #3
__________________
i am the future
Bookmark Post in Technorati
Reply With Quote
  #11 (permalink)  
Old 05-14-2008, 03:14 PM
Member
 
Join Date: Jan 2008
Posts: 83
Rep Power: 0
Preethi is on a distinguished road
Default
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
Bookmark Post in Technorati
Reply With Quote
  #12 (permalink)  
Old 05-14-2008, 07:44 PM
sukatoa's Avatar
Senior Member
 
Join Date: Jan 2008
Location: Cebu City, Philippines
Posts: 540
Rep Power: 3
sukatoa is on a distinguished road
Send a message via Yahoo to sukatoa
Default
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
Bookmark Post in Technorati
Reply With Quote
  #13 (permalink)  
Old 05-15-2008, 05:54 AM
Eku Eku is offline
Senior Member
 
Join Date: May 2008
Location: Makati, Philippines
Posts: 234
Rep Power: 2
Eku is on a distinguished road
Default
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));
    }
}
Bookmark Post in Technorati
Reply With Quote
  #14 (permalink)  
Old 05-15-2008, 06:29 AM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Default
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.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
Someone helped you? their helpful post.
Help:Forums FAQ|How To Ask Questions The Smart WayResources:The Java Tutorials|Glossary for Java|NetBeans IDE|Sun DownloadsWeb:WritOnceTips:Is your IDE the best?|Which Application Server?
Bookmark Post in Technorati
Reply With Quote
  #15 (permalink)  
Old 05-15-2008, 08:09 AM
Eku Eku is offline
Senior Member
 
Join Date: May 2008
Location: Makati, Philippines
Posts: 234
Rep Power: 2
Eku is on a distinguished road
Default
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.
Bookmark Post in Technorati
Reply With Quote
  #16 (permalink)  
Old 05-15-2008, 08:23 AM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Default
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.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
Someone helped you? their helpful post.
Help:Forums FAQ|How To Ask Questions The Smart WayResources:The Java Tutorials|Glossary for Java|NetBeans IDE|Sun DownloadsWeb:WritOnceTips:Is your IDE the best?|Which Application Server?
Bookmark Post in Technorati
Reply With Quote
  #17 (permalink)  
Old 05-15-2008, 08:31 AM
Eku Eku is offline
Senior Member
 
Join Date: May 2008
Location: Makati, Philippines
Posts: 234
Rep Power: 2
Eku is on a distinguished road
Default
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.
Bookmark Post in Technorati
Reply With Quote
  #18 (permalink)  
Old 05-15-2008, 09:44 AM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Default
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.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
Someone helped you? their helpful post.
Help:Forums FAQ|How To Ask Questions The Smart WayResources:The Java Tutorials|Glossary for Java|NetBeans IDE|Sun DownloadsWeb:WritOnceTips:Is your IDE the best?|Which Application Server?
Bookmark Post in Technorati
Reply With Quote
  #19 (permalink)  
Old 05-15-2008, 09:52 AM
Eku Eku is offline
Senior Member
 
Join Date: May 2008
Location: Makati, Philippines
Posts: 234
Rep Power: 2
Eku is on a distinguished road
Default
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.
Bookmark Post in Technorati
Reply With Quote
  #20 (permalink)  
Old 05-15-2008, 10:56 AM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 7,504
Rep Power: 11
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Default
Ya, it's much better if she got the point.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
Someone helped you? their helpful post.
Help:Forums FAQ|How To Ask Questions The Smart WayResources:The Java Tutorials|Glossary for Java|NetBeans IDE|Sun DownloadsWeb:WritOnceTips:Is your IDE the best?|Which Application Server?
Bookmark Post in Technorati
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
java.util.Date vs java.sql.Date Jack New To Java 4 04-05-2009 03:53 AM
Creating a Gregorian Calendar using a Date object gives date - 1 prachi_goliwadekar New To Java 1 05-08-2008 09:32 PM
Difference between current date and anothe date vijay balusamy New To Java 1 04-16-2008 05:15 PM
Using java.sql.Date Java Tip Java Tips 0 02-10-2008 12:32 PM
Java Date levent Java Tutorials 0 08-05-2007 02:57 AM


All times are GMT +2. The time now is 04:46 AM.



VBulletin, Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2009, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org