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.
在 Servlet 中,我想获取发出请求时的日期时间。
我不想使用 Java 的 Date 类,因为它无法提供准确的时间。
有什么帮助吗?
你有三个选择:
使用客户的计算机时间。这将要求客户端在请求参数或自定义标头中显式发送他或她的系统时间。更不用说互联网上的任意计算机可能有更不准确的时间。
使用外部时间服务器获取当前时间。
...或者只是信任您的服务器,如果它使用ntp,那么您是安全的。