如何在Android中将毫秒转换为日期格式?


Answers:


204

只需尝试以下示例代码:-

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;


public class Test {

/**
 * Main Method
 */
public static void main(String[] args) {
    System.out.println(getDate(82233213123L, "dd/MM/yyyy hh:mm:ss.SSS"));
}


/**
 * Return date in specified format.
 * @param milliSeconds Date in milliseconds
 * @param dateFormat Date format 
 * @return String representing date in specified format
 */
public static String getDate(long milliSeconds, String dateFormat)
{
    // Create a DateFormatter object for displaying date in specified format.
    SimpleDateFormat formatter = new SimpleDateFormat(dateFormat);

    // Create a calendar object that will convert the date and time value in milliseconds to date. 
     Calendar calendar = Calendar.getInstance();
     calendar.setTimeInMillis(milliSeconds);
     return formatter.format(calendar.getTime());
}
}

希望对您有所帮助...


它适用于10位数以上的长值,但不适用于向下6位数的值。小时的默认值为4。
ralphgabb 2014年

5
您应该使用new SimpleDateFormat(dateFormat,Locale.US(或您的语言环境))而不是new SimpleDateFormat(dateFormat),因为由于更改默认的Android语言而导致崩溃
Amir Hossein Ghasemi 2014年

2
仅供参考,麻烦的旧日期,时间类,如java.util.Datejava.util.Calendarjava.text.SimpleDateFormat现在的遗产,由取代java.time类。在ThreeTen-Backport项目中,许多java.time功能都被反向移植到Java 6和Java 7 。在ThreeTenABP项目中进一步适用于早期的Android 。请参阅如何使用ThreeTenABP…
罗勒·布尔克

@乌塔姆,这工作谢谢!,但我有一个问题。我们应该以“ / Date(1224043200000)/”格式接收时间和日期吗?我已经读到它是Microsoft的旧json格式,因此不应在新开发中使用。
奥尔多

78

毫秒值转换为Date实例,然后将其传递给所选的格式化程序。

SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy"); 
String dateString = formatter.format(new Date(dateInMillis)));

36
public static String convertDate(String dateInMilliseconds,String dateFormat) {
    return DateFormat.format(dateFormat, Long.parseLong(dateInMilliseconds)).toString();
}

调用此功能

convertDate("82233213123","dd/MM/yyyy hh:mm:ss");

2
感谢Mahmood,此解决方案需要API级别1(我的项目降至API 15),而其他答案则需要API级别24(日期和/或日历库)
Steve Rogers

如果你是美国人怎么办?
相信


10

试试此代码可能会有所帮助,对其进行修改以满足您的需求

SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
Date d = format.parse(fileDate);

8

我终于找到了适合我的普通代码

Long longDate = Long.valueOf(date);

Calendar cal = Calendar.getInstance();
int offset = cal.getTimeZone().getOffset(cal.getTimeInMillis());
Date da = new Date(); 
da = new Date(longDate-(long)offset);
cal.setTime(da);

String time =cal.getTime().toLocaleString(); 
//this is full string        

time = DateFormat.getTimeInstance(DateFormat.MEDIUM).format(da);
//this is only time

time = DateFormat.getDateInstance(DateFormat.MEDIUM).format(da);
//this is only date

6

tl; dr

Instant.ofEpochMilli( myMillisSinceEpoch )           // Convert count-of-milliseconds-since-epoch into a date-time in UTC (`Instant`).
    .atZone( ZoneId.of( "Africa/Tunis" ) )           // Adjust into the wall-clock time used by the people of a particular region (a time zone). Produces a `ZonedDateTime` object.
    .toLocalDate()                                   // Extract the date-only value (a `LocalDate` object) from the `ZonedDateTime` object, without time-of-day and without time zone.
    .format(                                         // Generate a string to textually represent the date value.
        DateTimeFormatter.ofPattern( "dd/MM/uuuu" )  // Specify a formatting pattern. Tip: Consider using `DateTimeFormatter.ofLocalized…` instead to soft-code the formatting pattern.
    )                                                // Returns a `String` object.

java.time

现代方法使用java.time类来代替所有其他Answers使用的麻烦的旧旧日期时间类。

假设long自1970年1月的UTC 1970-01-01T00:00:00Z的纪元参考起有毫秒数。

Instant instant = Instant.ofEpochMilli( myMillisSinceEpoch ) ;

要获取日期需要一个时区。在任何给定时刻,日期都会在全球范围内变化。

ZoneId z = ZoneId.of( "Pacific/Auckland" ) ;
ZonedDateTime zdt = instant.atZone( z ) ;  // Same moment, different wall-clock time.

提取仅日期的值。

LocalDate ld = zdt.toLocalDate() ;

使用标准ISO 8601格式生成表示该值的字符串。

String output = ld.toString() ;

生成自定义格式的字符串。

DateTimeFormatter f = DateTimeFormatter.ofPattern( "dd/MM/uuuu" ) ;
String output = ld.format( f ) ;

提示:考虑让java.time为您自动本地化,而不是硬编码格式模式。使用DateTimeFormatter.ofLocalized…方法。


关于java.time

java.time框架是建立在Java 8和更高版本。这些类取代麻烦的老传统日期时间类,如java.util.DateCalendar,和SimpleDateFormat

现在处于维护模式Joda-Time项目建议迁移到java.time类。

要了解更多信息,请参见Oracle教程。并在Stack Overflow中搜索许多示例和说明。规格为JSR 310

您可以直接与数据库交换java.time对象。使用与JDBC 4.2或更高版本兼容的JDBC驱动程序。不需要字符串,不需要类。java.sql.*

在哪里获取java.time类?

ThreeTen-额外项目与其他类扩展java.time。该项目是将来可能向java.time添加内容的试验场。你可能在这里找到一些有用的类,比如IntervalYearWeekYearQuarter,和更多


5

简短而有效:

DateFormat.getDateTimeInstance().format(new Date(myMillisValue))

4
public class LogicconvertmillistotimeActivity extends Activity {
    /** Called when the activity is first created. */
     EditText millisedit;
        Button   millisbutton;
        TextView  millistextview;
        long millislong;
        String millisstring;
        int millisec=0,sec=0,min=0,hour=0;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        millisedit=(EditText)findViewById(R.id.editText1);
        millisbutton=(Button)findViewById(R.id.button1);
        millistextview=(TextView)findViewById(R.id.textView1);
        millisbutton.setOnClickListener(new View.OnClickListener() {            
            @Override
            public void onClick(View v) {   
                millisbutton.setClickable(false);
                millisec=0;
                sec=0;
                min=0;
                hour=0;
                millisstring=millisedit.getText().toString().trim();
                millislong= Long.parseLong(millisstring);
                Calendar cal = Calendar.getInstance();
                SimpleDateFormat formatter = new SimpleDateFormat("HH:mm:ss");
                if(millislong>1000){
                    sec=(int) (millislong/1000);
                    millisec=(int)millislong%1000;
                    if(sec>=60){
                        min=sec/60;
                        sec=sec%60;
                    }
                    if(min>=60){
                        hour=min/60;
                        min=min%60;
                    }
                }
                else
                {
                    millisec=(int)millislong;
                }
                cal.clear();
                cal.set(Calendar.HOUR_OF_DAY,hour);
                cal.set(Calendar.MINUTE,min);
                cal.set(Calendar.SECOND, sec);
                cal.set(Calendar.MILLISECOND,millisec);
                String DateFormat = formatter.format(cal.getTime());
//              DateFormat = "";
                millistextview.setText(DateFormat);

            }
        });
    }
}

我们可以使用“时间单位”来做到这一点..但它不能正常工作...使用此..这将对您有所帮助..它可以正常工作
gaddam nagaraju 2012年

2
    public static Date getDateFromString(String date) {

    Date dt = null;
    if (date != null) {
        for (String sdf : supportedDateFormats) {
            try {
                dt = new Date(new SimpleDateFormat(sdf).parse(date).getTime());
                break;
            } catch (ParseException pe) {
                pe.printStackTrace();
            }
        }
    }
    return dt;
}

public static Calendar getCalenderFromDate(Date date){
    Calendar cal =Calendar.getInstance();
    cal.setTime(date);return cal;

}
public static Calendar getCalenderFromString(String s_date){
    Date date = getDateFromString(s_date);
    Calendar cal = getCalenderFromDate(date);
    return cal;
}

public static long getMiliSecondsFromString(String s_date){
    Date date = getDateFromString(s_date);
    Calendar cal = getCalenderFromDate(date);
    return cal.getTimeInMillis();
}

使用这些方法可以将字符串格式的日期转换为2016-08-18或任何类型的字符串格式至DateFormat,并且您还可以将日期转换为毫秒。
拉文德拉·拉特小时

2

我一直在寻找一种有效的方法来执行此操作,而我发现的最好的方法是:

DateFormat.getDateInstance(DateFormat.SHORT).format(new Date(millis));

优点:

  1. 已本地化
  2. 自API 1开始使用Android
  3. 很简单

缺点:

  1. 有限的格式选项。仅供参考:短仅是两位数的年份。
  2. 您每次都刻录一个Date对象。我已经查看了其他选项的来源,与它们的开销相比,这是相当小的。

您可以缓存java.text.DateFormat对象,但这不是线程安全的。如果在UI线程上使用它,则可以。


1
public static String toDateStr(long milliseconds, String format)
{
    Date date = new Date(milliseconds);
    SimpleDateFormat formatter = new SimpleDateFormat(format, Locale.US);
    return formatter.format(date);
}

0

对Android N及更高版本使用SimpleDateFormat。将日历用于早期版本,例如:

if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
        fileName = new SimpleDateFormat("yyyy-MM-dd-hh:mm:ss").format(new Date());
        Log.i("fileName before",fileName);
    }else{
        Calendar cal = Calendar.getInstance();
        cal.add(Calendar.MONTH,1);
        String zamanl =""+cal.get(Calendar.YEAR)+"-"+cal.get(Calendar.MONTH)+"-"+cal.get(Calendar.DAY_OF_MONTH)+"-"+cal.get(Calendar.HOUR_OF_DAY)+":"+cal.get(Calendar.MINUTE)+":"+cal.get(Calendar.SECOND);

        fileName= zamanl;
        Log.i("fileName after",fileName);
    }

输出:
文件名之前:2019-04-12-07:14:47  //使用SimpleDateFormat
fileName文件后:2019-4-12-7:13:12        //使用日历


0

这是使用Kotlin的最简单方法

private const val DATE_FORMAT = "dd/MM/yy hh:mm"

fun millisToDate(millis: Long) : String {
    return SimpleDateFormat(DATE_FORMAT, Locale.US).format(Date(millis))
}

(1)请不要教年轻人使用已经过时且臭名昭著的SimpleDateFormat课程。至少不是第一选择。也并非毫无保留。今天,我们在java.timeJava的现代日期和时间API及其上有了很多改进DateTimeFormatter。是的,您可以在Android上使用它。对于较旧的Android,请使用desugaring,或参阅如何在Android Project中使用ThreeTenABP
Ole VV

(2)我不认为您打算使用小写字母hh吗?请在此处检查大写和小写之间的区别。
Ole VV

现代的方法是:return Instant.ofEpochMilli(millis).atZone(ZoneId.systemDefault()).format(DateTimeFormatter.ofPattern(DATE_FORMAT, Locale.US))。是的,它的时间更长,因为它提供了有关正在发生的事情的更多信息,因此这是一个优势。
Ole VV

-1

您可以在毫秒上构造java.util.Date。然后使用java.text.DateFormat将其转换为字符串。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.