Skip to content

Instantly share code, notes, and snippets.

@john-evangelist
Created June 1, 2014 03:17
Show Gist options
  • Save john-evangelist/0cd8f4093ec5de17becf to your computer and use it in GitHub Desktop.
Save john-evangelist/0cd8f4093ec5de17becf to your computer and use it in GitHub Desktop.
private String parse(int pos){
Calendar data = vendas.get(pos).getData();
return String.format("%s/%s/%s",
data.get(Calendar.DAY_OF_MONTH),
data.get(Calendar.MONTH),
data.get(Calendar.YEAR));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment