这段代码为什么inputstream的对象is是空指针???因为文件内没有内容 ?     try {
        FileOutputStream fos = new FileOutputStream("C:\\Documents and Settings\\Administrator\\1" );
        InputStream is = test.class.getClassLoader().getResourceAsStream("1");
        //t.copyAll(is, fos);
        fos.close();
        is.close();
      } catch (Exception f) {
        //try to load anyways - could be a sharing violation
      }