A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 樊其杰 于 2013-5-22 16:32 编辑

ClassLoaderAttachment类代码如下:
  1. package cn.itcast.day2;

  2. import java.util.Date;

  3. public class ClassLoaderAttachment extends Date {

  4. @Override
  5. public String toString() {
  6. return "hello itcast";
  7. }
  8. }
复制代码
MyClassLoader类代码如下:
  1. package cn.itcast.day2;
  2. /**
  3. * 加密程序
  4. */
  5. import java.io.*;

  6. public class MyClassLoader {

  7. public static void main(String[] args) throws Exception{

  8. String srcPath=args[0];
  9. String destDir=args[1];
  10. FileInputStream fis=new FileInputStream(srcPath);
  11. String destFileName=srcPath.substring(srcPath.lastIndexOf('\\')+1);
  12. String destPath=destDir+"\\"+destFileName;
  13. FileOutputStream fos=new FileOutputStream(destPath);
  14. cypher(fis, fos);
  15. fos.close();
  16. fis.close();
  17. }
  18. public static void cypher(InputStream ins,OutputStream outs)throws Exception{
  19. int b=0;
  20. while((b=ins.read())!=-1){
  21. outs.write(b^0xff);
  22. }
  23. }
  24. }
复制代码
程序运行输入截图如下:

为什么运行时出错?Exception in thread "main" java.io.FileNotFoundException: E:\Workspaces\MyEclipse (系统找不到指定的文件。)?

QQ五笔截图未命名.png (65.16 KB, 下载次数: 0)

QQ五笔截图未命名.png

评分

参与人数 1技术分 +1 收起 理由
袁梦希 + 1

查看全部评分

1 个回复

倒序浏览
怎么没人来回答?
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马