I'm new to Java, and I did some search in google and this forum, but I'm still not sure what is a good way to do this. (Joda time is not an option to me).
Date d1;
Date d2;
Date d3;
float a;
what is a good way for me to do:
d3 + a - (d1 - d2);
Do I need to get the millisecond between d1 and d2, and then convert d3 to calendar to add the millisecond to it?
Thank you!
Edit: I should have mentioned that float a represents number of minutes, e.g. a = 35.6 minutes.
agiven? – Paŭlo Ebermann Jul 26 '11 at 21:49