黑马程序员技术交流社区
标题:
类加载器中的异常求解??
[打印本页]
作者:
jingzhouheima
时间:
2013-8-13 10:47
标题:
类加载器中的异常求解??
自定义了一个类加载器:public static void main(String[] args) throws Exception
{
String srcPath = args[0];
String destDir = args[1];//目标的目录,而不是路径
FileInputStream fis = new FileInputStream(srcPath);
String destFileName = srcPath.substring(srcPath.lastIndexOf('\\')+1);
String destPath = destDir +"\\" + destFileName;
FileOutputStream fos = new FileOutputStream(destDir);
cypher(fis,fos);//调用cypher加密方法
fis.close();
fos.close();
}
然后给主类配置了两个参数
如图:1-1
然后一直出现这样的异常:
Exception in thread "main" java.io.FileNotFoundException: G:\Workspaces\MyEclipse (系统找不到指定的文件。)
at java.io.FileInputStream.open(Native Method)
图1-1.png
(9.24 KB, 下载次数: 11)
下载附件
2013-8-13 10:44 上传
图1-1
作者:
许庭洲
时间:
2013-9-25 08:15
值得学习ing!
作者:
雪人
时间:
2013-9-25 08:53
看不到cypher这个方法, 我也不知道这个方法哪里来的. 感觉问题应该出现在这个类里面吧...不过看错误提示,又感觉是你输入的路径不完整
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2