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.
我正在编写一个 Jsp 页面来获取当前日期时间并显示。它工作正常。但是当我在美国的服务器上部署项目时,我会显示美国的当前日期时间。如何从服务器获取印度当前日期时间。
试试这个..这只是时区。
Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("IST")); Date date = calendar.getTime(); System.out.println(date);