final String fileString = post.get("file$file");
if (fileString != null) {
try {
otherBlacklists = new XMLBlacklistImporter().parse(new StringReader(fileString));
} catch (final IOException ex) {
prop.put("status", STATUS_FILE_ERROR);
} catch (final SAXException ex) {
prop.put("status", STATUS_PARSE_ERROR);
}