I would set a TimeZone for Calendar instance but i'm not able to do it. I've try with:
DateFormat dateFormat = new SimpleDateFormat("dd//MM/yyyy HH:mm:ss");
Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("America/Rosario"));
System.out.println(cal.getTime());
(i've used "America/Rosario" randomly), but i obtain always my current time. What's the right mode to do that?