while (fileItem.length() < MIMETYPE_SIZE)
{
fileItem += " ";
}
LastModifiedProp lastModifiedProperty = (LastModifiedProp) response.getProperty(WebDavProp.GETLASTMODIFIED);
if (lastModifiedProperty != null)
{
Date d = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss z");
try
{
d = sdf.parse(lastModifiedProperty.getLastModified());
}
catch (Exception e)
{
e.printStackTrace();
}