One way to do this is the following.
TimeZone.setDefault(TimeZone.getTimeZone("yourTimeZone"));
However, it will affect the entire JVM. Is there a way to do it on a query basis that is safe and will not have impact to the rest of the application or JVM that may have assumed a specific timezone?