如何设置根据当前时间自动创建文件名?
我正在用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
日期
是一种可能性,尽管我会使用currentTimeMillis()
。Date
is one possiblility, though I'd use thecurrentTimeMillis()
.