Android Time Format convertDateTime(String date)

Here you can find the source of convertDateTime(String date)

Description

convert Date Time

Declaration

@SuppressLint("SimpleDateFormat")
    public static long convertDateTime(String date) 

Method Source Code

//package com.java2s;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

import android.annotation.SuppressLint;

public class Main {
    private static final String DEFAULT_FORMAT_DATE = "yyyy-MM-dd HH:mm:ss";

    @SuppressLint("SimpleDateFormat")
    public static long convertDateTime(String date) {
        return convertDateTime(date, null);
    }/*w w w  . j  ava2s  . c  o m*/

    @SuppressLint("SimpleDateFormat")
    public static long convertDateTime(String date, String format) {
        try {
            if (format == null) {
                format = DEFAULT_FORMAT_DATE;
            }

            SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format);

            return simpleDateFormat.parse(date).getTime();
        } catch (ParseException e) {
            e.printStackTrace();
        }

        return 0;
    }

    @SuppressLint("SimpleDateFormat")
    public static String convertDateTime(long date) {
        return convertDateTime(date, null);
    }

    @SuppressLint("SimpleDateFormat")
    public static String convertDateTime(long date, String format) {
        try {
            if (format == null) {
                format = DEFAULT_FORMAT_DATE;
            }

            SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format);

            return simpleDateFormat.format(new Date(date));
        } catch (Exception e) {
            e.printStackTrace();
        }

        return null;
    }
}

Related

  1. getRFC3339FormattedTime()
  2. get_current_date_time_format1_str()
  3. timeFormatToString(int paramInt)
  4. timeLongToHhmm(long timeMillis, DateFormat df)
  5. toModifiedTimeString(Date modified)
  6. convertDateTime(long date)
  7. getTimeStr(long time)
  8. getTimeString(Date utcDate)
  9. getTimeString(String dateString)