I have deleted Java class and compiled again after making changes to some image files but the changes are not still reflecting when run!
The code is rather large so I cannot post them here but is there a reason why? Do I need to use decompiler to decompile them rather than deleting?
No, a decompiler won’t help you here. Either you’re compiling the wrong
.javafiles or you’re loading the wrong.classfiles.Run
javawith-verbose:classto get a dump of where classes are loaded from.http://www.ibm.com/developerworks/java/library/j-dyn0429/