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

发布于 2025-01-04 23:05:34 字数 401 浏览 1 评论 0原文

我正在用 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中我应该使用什么包?或者如何做到这一点?

I am creating a recorder application in java. I want to set the file names according to the current time. In an android application I have seen it like

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.
        }

In java what package should I use? or how to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空袭的梦i 2025-01-11 23:05:34

日期 是一种可能性,尽管我会使用 currentTimeMillis()

Date is one possiblility, though I'd use the currentTimeMillis().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文