运行 ❯
获取你自己的
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 日
周四 3 月 28 日 15:15:03 UTC 2024