⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filenotfoundstrings.java

📁 java编写的非常详尽的基于ftp协议的上传下载源码
💻 JAVA
字号:
/**
 *
 *  Copyright (C) 2000-2007  Enterprise Distributed Technologies Ltd
 *
 *  www.enterprisedt.com
 *
 *  Change Log:
 *
 *        $Log: FileNotFoundStrings.java,v $
 *        Revision 1.3  2007-10-23 07:20:06  bruceb
 *        new string
 *
 *        Revision 1.2  2007-07-05 05:27:40  bruceb
 *        extra strings added
 *
 *        Revision 1.1  2007/01/12 02:04:23  bruceb
 *        string matchers
 *
 *
 */
package com.enterprisedt.net.ftp;

/**
 *  Contains fragments of server replies that indicate no files were
 *  found in a supplied directory.
 *
 *  @author      Bruce Blackshaw
 *  @version     $Revision: 1.3 $
 */
final public class FileNotFoundStrings extends ServerStrings {

    /**
     * Server string indicating file not found
     */
    final public static String FILE_NOT_FOUND = "NOT FOUND";
    
    /**
     * Server string indicating file not found
     */
    final public static String NO_SUCH_FILE = "NO SUCH FILE";
    
    /**
     * Server string indicating file not found 
     */
    final public static String CANNOT_FIND_THE_FILE = "CANNOT FIND THE FILE";
    
    /**
     * Server string indicating file not found
     */
    final public static String FAILED_TO_OPEN_FILE = "FAILED TO OPEN FILE";
    
    /**
     * Server string indicating file not found
     */
    final public static String COULD_NOT_GET_FILE = "COULD NOT GET FILE";
    
    /**
     * Server string indicating file not found
     */
    final public static String DOES_NOT_EXIST = "DOES NOT EXIST";
    
    /**
     * Constructor. Adds the fragments to match on
     */
    public FileNotFoundStrings() {
        add(FILE_NOT_FOUND);
        add(NO_SUCH_FILE);
        add(CANNOT_FIND_THE_FILE);
        add(FAILED_TO_OPEN_FILE);
        add(COULD_NOT_GET_FILE);
        add(DOES_NOT_EXIST);
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -