I'm having trouble formatting a date to be useful, I need to format a date that is Tue Nov 22 00:00:00 BRST 2017 (example) to date in dd/MM/yyyy
format.
I've been seeing some links, such as: How to convert one string in date or date? but it 's not working, I think I' m not knowing how to use them.
Date data = new Date();
Calendar calendar = Calendar.getInstance();
calendar.setTime(data);
//eu ultilizo o calendar em alguns calculos, depois eu seto ele no meu pojo.
//porém ele vem nesse formato, exemplo: Tue Nov 22 00:00:00 BRST 2017
//quero converter em dd/MM/yyyy
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
meuPojo.setVencimento(sdf.parse(calendar.getTime())); // minha tentativa de converter, porém da erro de: "incompatible types: Date cannot be converted to String"
//exemplo de como é o meu método setVencimento
public void setVencimento(Date data){
this.data = data;
}