自定义了一个类加载器: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)
|
|