http://www.dingl.com/view.shtml?xh=271上有,只是具体的不大会,本人才开始学习java

解决方案 »

  1.   

    package com.iclass.file;
    import java.io.*;
    /**
     * <p>Title: </p>
     * <p>Description: </p>
     * <p>Copyright: Copyright (c) 2004</p>
     * <p>Company: </p>
     * @author not attributable
     * @version 1.0
     */public class FileUtilityImpl implements FileUtility {
      public FileUtilityImpl() {
      }
      public void setRealPath(String realPath) {
        /**@todo Implement this com.iclass.file.FileUtility method*/
        throw new java.lang.UnsupportedOperationException("Method setRealPath() not yet implemented.");
           }
      public String getRealPath() {
        /**@todo Implement this com.iclass.file.FileUtility method*/
        throw new java.lang.UnsupportedOperationException("Method getRealPath() not yet implemented.");  }
      public void makePath(String path) {
        /**@todo Implement this com.iclass.file.FileUtility method*/
        throw new java.lang.UnsupportedOperationException("Method makePath() not yet implemented.");  }
      public String[] getPath(String parentPath) {
        /**@todo Implement this com.iclass.file.FileUtility method*/
        throw new java.lang.UnsupportedOperationException("Method getPath() not yet implemented.");  }
      public String[] getFile(String parentPath) {
        /**@todo Implement this com.iclass.file.FileUtility method*/
        throw new java.lang.UnsupportedOperationException("Method getFile() not yet implemented.");  }
      public void delFile(String file) {
        /**@todo Implement this com.iclass.file.FileUtility method*/
        throw new java.lang.UnsupportedOperationException("Method delFile() not yet implemented.");  }
      public void delPath(String path) {
        
        throw new java.lang.UnsupportedOperationException("Method delPath() not yet implemented.");  }}