Package com.hdfsTools.impl

Examples of com.hdfsTools.impl.deleteImpl


   * @return
   * @throws IOException
   */
  public boolean deleteFile(String fileUrl) throws IOException {

    deleteDao delete = new deleteImpl();
    return delete.deleteFile(getConf(), fileUrl);

  }
View Full Code Here


   * @param directorUrl
   *            url ,example: /user
   * @return
   */
  public boolean deleteDirector(String directorUrl) {
    deleteDao delete = new deleteImpl();
    try {
      return delete.deleteDirector(getConf(), directorUrl);
    } catch (IOException e) {
      System.out.println("throw the IOEception...");
      return false;
    }
  }
View Full Code Here

TOP

Related Classes of com.hdfsTools.impl.deleteImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.