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);