I have two strings:

String date = "2011-11-11"
String time="11:00 PM" 

i want to merge this date and time and convert them into a long, similar to System.currentTimeMillis().

link|improve this question

47% accept rate
Damn you all :D I was first :O – Traxdata Nov 11 '11 at 6:04
This question isn't materially different than your other question: stackoverflow.com/questions/8091235/… – Michael Donohue Nov 11 '11 at 9:16
feedback

4 Answers

try this it is working fine

 String inputDate=date+" "+time ;;
       long parsedDate = HttpDateParser.parse(inputDate);//inputDate should 2011-12-11 11:10:00 PM" formate
       System.out.println("========================="+parsedDate);
       Date date=new Date(parsedDate);
       SimpleDateFormat date1=new SimpleDateFormat("yyyy-mm-dd hh:mm aa");
       String opdate=date1.format(date);
       System.out.println("========================="+opdate);
link|improve this answer
if String time = "02:30 PM"; m still get 02:30 AM – Coder Nov 11 '11 at 9:57
feedback

Use SimpleDateFormat and parse the String into a Date. When you have Date you can get .getTime() what's a long

http://download.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html

NOT TESTED!!

String date = "2011-11-11";
String time = "11:00 PM";
String toParse = date + " " + time;

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd hh:mm aa");
try {
    Date parse = sdf.parse(toParse);
    parse.getTime();
} catch (ParseException ex) {       
}
link|improve this answer
how to covert 02:30 PM to 14:30 (in 24 hour format) – Coder Nov 11 '11 at 6:33
If you could use my answer please tag it:-* – Traxdata Nov 11 '11 at 6:56
sdf.parse(); is not working in Blackberry OS 5.0 – Coder Nov 11 '11 at 7:47
hi m passing "02:30 PM" and in o/p m getting "02:30 AM" what is the problem ? – Coder Nov 11 '11 at 7:54
feedback
String dateTime = "2011-11-11 " + time;
DateFormat formatter ; 
Date date ; 
formatter = new SimpleDateFormat("dd-MMM-yy HH:MM");
date = (Date)formatter.parse(dateTime ); 
long time = date.getTime();

I found this SO post in the same lines.

link|improve this answer
feedback
String date =date+time ;
SimpleDateFormat fmt = new SimpleDateFormat("MM-dd-yyyy HH:mm");
Date myDate = fmt.parse(date); 

System.out.println(myDate);  //Mon Jun 04 07:05:00 EDT 2007
long timestamp = myDate.getTime();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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