simpledataformat - android怎么按固定格式显示24小时后的时间
ringa_lee
ringa_lee 2017-04-17 11:03:44
0
2
683

Android里在一个按钮上显示当前时间是这样

Button stopButton = (Button) this
            .findViewById(R.id.StartTrackingEditStopTime_button);
    // 格式化时间
    SimpleDateFormat sdfStopTime = new SimpleDateFormat("hh:mm:ss a",
            Locale.ENGLISH);
    // 当前时间
    String newStoptime = sdfStopTime
            .format(new Date(System.currentTimeMillis()));

    stopButton.append(newStoptime);

那我要在这里显示一段时间以后的时间,比如1小时,24小时,48小时,要怎么做?

ringa_lee
ringa_lee

ringa_lee

모든 응답(2)
Ty80

笨方法就是在当前时间后面直接加毫秒数,更好的方法我也不知道..

洪涛

两个办法,第一个就想Dary说的,直接在当前时间上加毫秒数

SimpleDateFormat sdfStopTime = new SimpleDateFormat("hh:mm:ss a", Locale.ENGLISH);
String newStoptime = sdfStopTime.format(
        new Date(System.currentTimeMillis() + 86400000));

第二个,用Calendar

Calendar c = Calendar.getInstance();
c.add(Calendar.HOUR, 1);
Date d = c.getTime();
String newStopTime = sdfStopTime.format(d);
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿