Looking into it now, but for your info... This may be a Windows 7 permissions 'or' timing issue.
UrlCache.java - createCacheDir() uses an unchecked call to cacheDir.mkdirs(); just after deleting it. This is failing, and is not being picked up.
Adding the following highlights the failure:
if (!cacheDir.mkdirs()) {
throw new IOException("Unable to create cache temp directory: " +
cacheDir);
} ...so now I am just trying to find out why ;-( Will let you know soonest. Andy
