Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我为日期赋值的代码:
long saveddatevalue = new Date().getTime();
我只是想知道,这个保存的长变量实际上显示了什么?我希望用它在一定天数内输出值。
谢谢!
它基本上会给你相同的结果System.currentTimeMillis()- 自 1970 年 1 月 1 日午夜 Unix 纪元以来的毫秒数,UTC。
System.currentTimeMillis()
java.util.Calendar.add(int, int)操作日期要容易得多。这是一些示例代码。
java.util.Calendar.add(int, int)