如何根据当前时间设置自动文件名创建者?

时间:2012-02-12 11:13:08

标签: java time recorder

我正在用java创建一个记录器应用程序。我想根据当前时间设置文件名。在Android应用程序中,我看到它像

import android.text.format.Time;

public CallRecorder(String filename,int sample_rate)
    {
        if (filename == null)
        {
            Time t = new Time();
            t.setToNow();
            filename = t.format2445(); // Create filename from current date.
        }

在java中我应该使用什么包?或者怎么做?

1 个答案:

答案 0 :(得分:1)

Date是一种可能性,但我会使用currentTimeMillis()