String path[]=(bootclasspath+System.getProperty("path.separator")+classpath).split("[;"+System.getProperty("path.separator")+"]+");
String classp="";
for (int i = 0; i < path.length; i++) {
classp+=path[i]+System.getProperty("path.separator");
}
ClassPath classPath = new ClassPath(classp);
try {
if (new File(classname).isAbsolute()) {
source=classname+".class";
ClassParser cp = new ClassParser(source);