Sorry, I didn't understand your question at first. Perhaps this will work:
File curDir = new File( original );
String parentPath = curDir.getParent();
File parentDir = new File( parentPath );
String parentDirName = parentDir.getName();
Seems like more code than necessary, though.