9

我正在尝试将毫秒日期转换为years months weeksand的数量days

例如:5 months, 2 weeks and 3 days1 year and 1 day

我不想要:7 days4 weeks> 这应该是1 weekand 1 month

我尝试了几种方法,但它总是变成类似7 days and 0 weeks.

我的代码:

int weeks = (int) Math.abs(timeInMillis / (24 * 60 * 60 * 1000 * 7));
int days = (int) timeInMillis / (24 * 60 * 60 * 1000)+1);

我必须将天数加 1,因为如果我有 23 小时,它应该是 1 天。

请解释如何正确转换它,我认为有更有效的方法可以做到这一点。

4

3 回答 3

35

我总是用它来获取毫秒数等年数,反之亦然。到目前为止,我没有遇到任何问题。希望能帮助到你。

import java.util.Calendar;

Calendar c = Calendar.getInstance(); 
//Set time in milliseconds
c.setTimeInMillis(milliseconds);
int mYear = c.get(Calendar.YEAR);
int mMonth = c.get(Calendar.MONTH); 
int mDay = c.get(Calendar.DAY_OF_MONTH);
int hr = c.get(Calendar.HOUR);
int min = c.get(Calendar.MINUTE);
int sec = c.get(Calendar.SECOND);
于 2013-03-17T13:40:31.157 回答
8

感谢Shobhit Puri ,我的问题得到了解决。

此代码以毫秒为单位计算给定时间内有多少个月、多少天等。我用它来计算两个日期之间的差异。

完整解决方案:

long day = (1000 * 60 * 60 * 24); // 24 hours in milliseconds
long time = day * 39; // for example, 39 days

Calendar c = Calendar.getInstance();
c.setTimeInMillis(time);
int mYear = c.get(Calendar.YEAR)-1970;
int mMonth = c.get(Calendar.MONTH); 
int mDay = c.get(Calendar.DAY_OF_MONTH)-1;
int mWeek = (c.get(Calendar.DAY_OF_MONTH)-1)/7; // ** if you use this, change the mDay to (c.get(Calendar.DAY_OF_MONTH)-1)%7

再次感谢你!

于 2013-03-17T19:32:43.393 回答
4

资料来源:将以秒为单位的时间间隔转换为更易于阅读的形式

function secondsToString(seconds)
{
var numyears = Math.floor(seconds / 31536000);
var numdays = Math.floor((seconds % 31536000) / 86400); 
var numhours = Math.floor(((seconds % 31536000) % 86400) / 3600);
var numminutes = Math.floor((((seconds % 31536000) % 86400) % 3600) / 60);
var numseconds = (((seconds % 31536000) % 86400) % 3600) % 60;
return numyears + " years " +  numdays + " days " + numhours + " hours " + numminutes + " minutes " + numseconds + " seconds";

}
于 2013-03-17T12:58:59.277 回答