You can manually set the timezone used by the JVM to UTC at application startup by using `TimeZone.setDefault(TimeZone.getTimeZone("UTC"))`. This way, when you use `Date`, it will use the timezone you've set. Note that this operation affects the entire program but does not affect the operating system.