运行 ❯
获取您
自己的Java
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
public class Main { public static void main(String[] args) { long date = 1711638903488L; // Unix timestamp (number of milliseconds since January 1, 1970) String result; // Time result = String.format("%tl:%<tM %<tp", date); System.out.println(result); // Month and day result = String.format("%tB %<te", date); System.out.println(result); // Full date representation result = String.format("%tc", date); System.out.println(result); } }
下午3:15
3月28日
2024年3月28日 星期四 15:15:03 UTC