说系统找不到这个指定路径 怎么这个路径会使这样呢?CLASS_PATH
生成的 是 CLASS_PATHcom\imooc\... 说这个"系统找不到指定的路径" 是怎么回事啊?
生成的 是 CLASS_PATHcom\imooc\... 说这个"系统找不到指定的路径" 是怎么回事啊?
2017-11-17
private byte[] loadClassData(String name) { try { // name=name.replace(".","//");//将name中的.转换成//,变成目录结构 FileInputStream is = new FileInputStream(new File(classpath+name+".class"));//编译后的.class文件的完整路径 ByteArrayOutputStream bos = new ByteArrayOutputStream(); int b = 0; while ((b=is.read())!=-1){ bos.write(b); } is.close(); return bos.toByteArray(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return null; }
把分隔符替换下就好了
举报