02-13-2009 03:08 PM
02-16-2009 02:32 AM
private String formatDate(String raw)
{
String [] campos = raw.split("-");
StringBuffer res = new StringBuffer();
res.append(campos[2]);
res.append("-");
res.append(campos[1]);
res.append("-");
res.append(campos[0]);
res.append("T00:00:00.000Z");
return res.toString();
}
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.