Hello,

I need to use ClassLoader;
For instance, I've got this problem:
Qt Code:
  1. Class t = Class.forName("java.lang.Thread");
  2. Class c = Class.forName("myclass.class") ;
To copy to clipboard, switch view to plain text mode 
The first works fine; the second launch an exception (it says file not found); the file is in the directory of project; I tried to move it to \bin dir, but the same
Besides, could anyone suggest me any fine link? (java api doens't like to me)....

Thanks to all