Hello,
You can use this method
private String fechaStrWTC(Date fecha){
String fechaSTR="";
GregorianCalendar gc = new GregorianCalendar();
gc.setTime(fecha);
TimeZone tz = TimeZone.getTimeZone("GMT");
gc.setTimeZone(tz);
fechaSTR = gc.get(Calendar.DATE) + "/"+ (gc.get(Calendar.MONTH )+1) + "/"+ gc.get(Calendar.YEAR) ;
return fechaSTR;
}
With this you cannot re mapping to String