java.lang.NumberFormatException: null -
i'm facing error: `unable load properties file multiwordnet exception in thread "main" java.lang.numberformatexception: null @ java.lang.integer.parseint(integer.java:417) @ java.lang.integer.<init>(integer.java:660) @ org.itc.mwn.mysqldictionary.<init>(mysqldictionary.java:85)` this property file mysqldictionary.java trying read: #------------------------------------------------------------ #properties file properties multiwordnet api #hostname of mysql server mwn_hostname=localhost #user mwn_user=root #password mwn_passwd= #database name mwn_db=wordnet #cache of entity cache_capacity=1000 and,finally, part code fails: public mysqldictionary() { try { connectionparameters = new properties(); connectionparameters.load(new fileinputstream(new file("./conf/multiwordnet.properties"))); } catch (java.io.ioexception ioee) { system.err.println("unable load properties file multiwordnet"); }