0

目前,我有一个由四个字符串表示的时间(示例 2328)。是否可以仅获取android当前日期+字符串中表示的时间?

这样它将以“yyyy-MM-dd HH:mm”表示

4

2 回答 2

0

这里有示例函数来格式化您喜欢的日期,希望这会有所帮助

public static String getFormattedDate() {
        return getFormattedDate(System.currentTimeMillis());
    }
    public static String getFormattedDate(long millis) {
        if (StringUtils.isEmpty(millis+"") || millis<=0) return "";

        return getFormattedDate(new Date(millis));
    }
    public static String getFormattedDate(Date date) {

        try {
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss", Locale.US);
            return sdf.format(date);
        }
        catch (Exception ex) {
            return "";
        }
    }
于 2012-08-06T19:18:23.333 回答
0

我通过使用 set 功能做到了

            String time = message.substring(7, 11);
             Calendar c = Calendar.getInstance();
             c.set(Calendar.HOUR_OF_DAY,Integer.parseInt(message.substring(7, 9)));
             c.set(Calendar.MINUTE,Integer.parseInt(message.substring(9, 11)));

                SimpleDateFormat df = new SimpleDateFormat("dd/MM/yyyy HH:mm");
                String formattedDate = df.format(c.getTime());
于 2012-08-07T07:11:57.547 回答