0

現在、4文字の文字列で表される時刻があります(例2328)。Androidの現在の日付と文字列で表された時刻のみを取得することは可能ですか?

「yyyy-MM-ddHH: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 に答える