there is a rule in java, you can not access non static variables inside a static method. check out your code and either use a non static variable or make the variable static which you are using. It...