A JVM do Java possui um timezone próprio (java timezone) diferente do timezone do sistema operacional. Assim, o horário de verão brasileiro pode ser um problema para as aplicações em Java. Pode acontecer que o S.O. entenda que já é horário de verão e o Java não, dessa forma o computador terá um horário enquanto a aplicação Java estará em outro.
Para atualizarmos o horário da jvm devemos seguir os seguintes passos:
Crie um arquivo chamado DSTTest.java :
/* * Timezone test to check that the new US 2007 DST rules have been * picked up by the JRE. TimeZone used is the default one on OS. * Sample result : * $java DSTTest "11/04/2007 0:00 AM" * JRE version : 1.4.2_13 * Sun Nov 04 00:00:00 EDT 2007 * TimeZone tested : Eastern Daylight Time * Your tested time is in daylight-savings time. * $java DSTTest "11/04/2007 3:00 AM" * JRE version : 1.4.2_13 * Sun Nov 04 03:00:00 EST 2007 * TimeZone tested : Eastern Standard Time * Your tested time is not in daylight-savings time. * $echo $TZ * America/New_York * */ import java.text.ParsePosition; import java.text.SimpleDateFormat; import java.util.Date; import java.util.TimeZone; public class DSTTest { private static final String DATE_FORMAT_PATTERN = "MM/dd/yyyy hh:mm a"; public static void main(String[] args) { try { String ver = System.getProperty("java.version"); String testDate = args[0]; // "11/04/2007 1:00 AM"; SimpleDateFormat df = new SimpleDateFormat(DATE_FORMAT_PATTERN); Date currentDate = df.parse(testDate, new ParsePosition(0)); System.out.println("JRE version : " + ver); System.out.println(currentDate); // Default timezone from the system is used. TimeZone tz = TimeZone.getDefault(); // Could manually set the timezone above. e.g : //TimeZone tz = TimeZone.getTimeZone("America/New_York"); System.out.println("TimeZone tested : " + tz.getDisplayName(tz.inDaylightTime(currentDate), TimeZone.LONG)); boolean indaylight = tz.inDaylightTime(currentDate); System.out.println("Your tested time is " + (indaylight ? "in " : "not in ") + "daylight-savings time."); } catch (Exception e) { System.out.println("Error encoutered. Please insure you supply a valid date format pattern."); System.out.println("Ensure you've quotes placed around the pattern!"); System.out.println("e.g java DSTTest "11/04/2007 1:00 AM""); } } }
Compile o arquivo com o comando “javac DSTTest.java” e execute
java DSTTest "02/22/2010 1:00 AM"
Caso ela ainda estiver no horário de verão, basta aplicar o patch chamado tzupdater :
http://www.oracle.com/technetwork/java/javase/tzupdater-readme-136440.html
Podemos validar o horário com o seguinte script :
test_date.java
public class teste_date{ public static void main (String[] args ) { System.out.println(new java.util.Date()); } }
Referência :
http://marcellomorettoni.wordpress.com/2011/06/27/java-resolvendo-o-horario-de-verao/