亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? file.java

?? gcc的組建
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
      {        // On Windows, a process has a current working directory for        // each drive and a path like "G:foo\bar" would mean the         // absolute path "G:\wombat\foo\bar" if "\wombat" is the         // working directory on the G drive.        String drvDir = null;        try          {            drvDir = new File (path.substring (0, 2)).getCanonicalPath();          }        catch (IOException e)          {            drvDir = path.substring (0, 2) + "\\";          }                // Note: this would return "C:\\." for the path "C:.", if "\"        // is the working folder on the C drive, but this is         // consistent with what Sun's JRE 1.4.1.01 actually returns!        if (path.length() > 2)          return drvDir + '\\' + path.substring (2, path.length());        else          return drvDir;      }    else      return System.getProperty ("user.dir") + separatorChar + path;  }  /**   * This method returns a <code>File</code> object representing the   * absolute path of this object.   *   * @return A <code>File</code> with the absolute path of the object.   *   * @since 1.2   */  public File getAbsoluteFile()  {    return new File(getAbsolutePath());  }  /**   * This method returns a canonical representation of the pathname of   * this file.  The actual form of the canonical representation is   * different.  On the GNU system, the canonical form differs from the   * absolute form in that all relative file references to "." and ".."   * are resolved and removed.   * <p>   * Note that this method, unlike the other methods which return path   * names, can throw an IOException.  This is because native method    * might be required in order to resolve the canonical path   *   * @exception IOException If an error occurs   */  public native String getCanonicalPath() throws IOException;  /**   * This method returns a <code>File</code> object representing the   * canonical path of this object.   *   * @return A <code>File</code> instance representing the canonical path of   * this object.   *   * @exception IOException If an error occurs.   *   * @since 1.2   */  public File getCanonicalFile() throws IOException  {    return new File(getCanonicalPath());  }  /**   * This method returns the name of the file.  This is everything in the   * complete path of the file after the last instance of the separator   * string.   *   * @return The file name   */  public String getName()  {    int nameSeqIndex = 0;    if (separatorChar == '\\' && path.length() > 1)      {        // On Windows, ignore the drive specifier or the leading '\\'        // of a UNC network path, if any (a.k.a. the "prefix").        if ((path.charAt (0) == '\\' && path.charAt (1) == '\\')            || (((path.charAt (0) >= 'a' && path.charAt (0) <= 'z')		 || (path.charAt (0) >= 'A' && path.charAt (0) <= 'Z'))		&& path.charAt (1) == ':'))	  {	    if (path.length() > 2)	      nameSeqIndex = 2;	    else	      return "";	  }      }    String nameSeq       = (nameSeqIndex > 0 ? path.substring (nameSeqIndex) : path);    int last = nameSeq.lastIndexOf (separatorChar);    return nameSeq.substring (last + 1);  }  /**   * This method returns a <code>String</code> the represents this file's   * parent.  <code>null</code> is returned if the file has no parent.  The   * parent is determined via a simple operation which removes the   *   * @return The parent directory of this file   */  public String getParent()  {    String prefix = null;    int nameSeqIndex = 0;    // The "prefix", if present, is the leading "/" on UNIX and     // either the drive specifier (e.g. "C:") or the leading "\\"    // of a UNC network path on Windows.    if (separatorChar == '/' && path.charAt (0) == '/')      {        prefix = "/";        nameSeqIndex = 1;      }    else if (separatorChar == '\\' && path.length() > 1)      {        if ((path.charAt (0) == '\\' && path.charAt (1) == '\\')            || (((path.charAt (0) >= 'a' && path.charAt (0) <= 'z')                 || (path.charAt (0) >= 'A' && path.charAt (0) <= 'Z'))                && path.charAt (1) == ':'))          {            prefix = path.substring (0, 2);            nameSeqIndex = 2;          }      }    // According to the JDK docs, the returned parent path is the     // portion of the name sequence before the last separator    // character, if found, prefixed by the prefix, otherwise null.    if (nameSeqIndex < path.length())      {        String nameSeq = path.substring (nameSeqIndex, path.length());        int last = nameSeq.lastIndexOf (separatorChar);        if (last == -1)          return prefix;        else if (last == (nameSeq.length() - 1))          // Note: The path would not have a trailing separator          // except for cases like "C:\" on Windows (see           // normalizePath( )), where Sun's JRE 1.4 returns null.          return null;        else if (last == 0)          last++;        if (prefix != null)          return prefix + nameSeq.substring (0, last);        else          return nameSeq.substring (0, last);      }    else      // Sun's JRE 1.4 returns null if the prefix is the only       // component of the path - so "/" gives null on UNIX and       // "C:", "\\", etc. return null on Windows.      return null;  }  /**   * This method returns a <code>File</code> object representing the parent   * file of this one.   *   * @return a <code>File</code> for the parent of this object.     * <code>null</code>   * will be returned if this object does not have a parent.   *   * @since 1.2   */  public File getParentFile()  {    String parent = getParent();    return parent != null ? new File(parent) : null;  }  /**   * Returns the path name that represents this file.  May be a relative   * or an absolute path name   *   * @return The pathname of this file   */  public String getPath()  {    return path;  }  /**   * This method returns a hash code representing this file.  It is the   * hash code of the path of this file (as returned by <code>getPath()</code>)   * exclusived or-ed with the value 1234321.   *   * @return The hash code for this object   */  public int hashCode()  {    if (caseSensitive)      return path.hashCode() ^ 1234321;    else      return path.toLowerCase().hashCode() ^ 1234321;  }  /**   * This method returns true if this object represents an absolute file   * path and false if it does not.  The definition of an absolute path varies   * by system.  As an example, on GNU systems, a path is absolute if it starts   * with a "/".   *   * @return <code>true</code> if this object represents an absolute    * file name, <code>false</code> otherwise.   */  public native boolean isAbsolute();  /**   * This method tests whether or not the file represented by this object   * is a directory.  In order for this method to return <code>true</code>,   * the file represented by this object must exist and be a directory.   *    * @return <code>true</code> if this file is a directory, <code>false</code>   * otherwise   *   * @exception SecurityException If reading of the file is not permitted   */  public boolean isDirectory()  {    checkRead();    return _stat (DIRECTORY);  }  /**   * This method tests whether or not the file represented by this object   * is a "plain" file.  A file is a plain file if and only if it 1) Exists,   * 2) Is not a directory or other type of special file.   *   * @return <code>true</code> if this is a plain file, <code>false</code>    * otherwise   *   * @exception SecurityException If reading of the file is not permitted   */  public boolean isFile()  {    checkRead();    return _stat (ISFILE);  }  /**   * This method tests whether or not this file represents a "hidden" file.   * On GNU systems, a file is hidden if its name begins with a "."   * character.  Files with these names are traditionally not shown with   * directory listing tools.   *   * @return <code>true</code> if the file is hidden, <code>false</code>   * otherwise.   *   * @since 1.2   */  public boolean isHidden()  {    checkRead();    return _stat (ISHIDDEN);  }  /**   * This method returns the last modification time of this file.  The   * time value returned is an abstract value that should not be interpreted   * as a specified time value.  It is only useful for comparing to other   * such time values returned on the same system.  In that case, the larger   * value indicates a more recent modification time.    * <p>   * If the file does not exist, then a value of 0 is returned.   *   * @return The last modification time of the file   *   * @exception SecurityException If reading of the file is not permitted   */  public long lastModified()  {    checkRead();    return attr (MODIFIED);  }  /**   * This method returns the length of the file represented by this object,   * or 0 if the specified file does not exist.   *   * @return The length of the file   *   * @exception SecurityException If reading of the file is not permitted   */  public long length()  {    checkRead();    return attr (LENGTH);  }  /*   * This native function actually produces the list of file in this   * directory   */  private final native Object[] performList (FilenameFilter filter,					     FileFilter fileFilter,					     Class result_type);  /**   * This method returns a array of <code>String</code>'s representing the   * list of files is then directory represented by this object.  If this   * object represents a non-directory file or a non-existent file, then   * <code>null</code> is returned.  The list of files will not contain   * any names such as "." or ".." which indicate the current or parent   * directory.  Also, the names are not guaranteed to be sorted.   * <p>   * In this form of the <code>list()</code> method, a filter is specified   * that allows the caller to control which files are returned in the   * list.  The <code>FilenameFilter</code> specified is called for each   * file returned to determine whether or not that file should be included   * in the list.   * <p>   * A <code>SecurityManager</code> check is made prior to reading the   * directory.  If read access to the directory is denied, an exception   * will be thrown.   *   * @param filter An object which will identify files to exclude from    * the directory listing.   *   * @return An array of files in the directory, or <code>null</code>    * if this object does not represent a valid directory.   *    * @exception SecurityException If read access is not allowed to the    * directory by the <code>SecurityManager</code>   */  public String[] list(FilenameFilter filter)  {    checkRead();    return (String[]) performList (filter, null, String.class);  }  /**   * This method returns a array of <code>String</code>'s representing the   * list of files is then directory represented by this object.  If this   * object represents a non-directory file or a non-existent file, then   * <code>null</code> is returned.  The list of files will not contain   * any names such as "." or ".." which indicate the current or parent   * directory.  Also, the names are not guaranteed to be sorted.   * <p>   * A <code>SecurityManager</code> check is made prior to reading the   * directory.  If read access to the directory is denied, an exception   * will be thrown.   *   * @return An array of files in the directory, or <code>null</code> if    * this object does not represent a valid directory.   *    * @exception SecurityException If read access is not allowed to the    * directory by the <code>SecurityManager</code>   */  public String[] list()  {    checkRead();    return (String[]) performList (null, null, String.class);  }  /**   * This method returns an array of <code>File</code> objects representing   * all the files in the directory represented by this object. If this   * object does not represent a directory, <code>null</code> is returned.   * Each of the returned <code>File</code> object is constructed with this   * object as its parent.   * <p>   * A <code>SecurityManager</code> check is made prior to reading the   * directory.  If read access to the directory is denied, an exception   * will be thrown.   *   * @return An array of <code>File</code> objects for this directory.   *   * @exception SecurityException If the <code>SecurityManager</code> denies   * access to this directory.   *   * @since 1.2   */  public File[] listFiles()  {    checkRead();    return (File[]) performList (null, null, File.class);  }    /**   * This method returns an array of <code>File</code> objects representing   * all the files in the directory represented by this object. If this   * object does not represent a directory, <code>null</code> is returned.   * Each of the returned <code>File</code> object is constructed with this   * object as its parent.   * <p>    * In this form of the <code>listFiles()</code> method, a filter is specified   * that allows the caller to control which files are returned in the   * list.  The <code>FilenameFilter</code> specified is called for each   * file returned to determine whether or not that file should be included   * in the list.   * <p>   * A <code>SecurityManager</code> check is made prior to reading the   * directory.  If read access to the directory is denied, an exception   * will be thrown.   *   * @return An array of <code>File</code> objects for this directory.   *   * @exception SecurityException If the <code>SecurityManager</code> denies   * access to this directory.   *   * @since 1.2   */  public File[] listFiles(FilenameFilter filter)  {    checkRead();    return (File[]) performList (filter, null, File.class);  }  /**   * This method returns an array of <code>File</code> objects representing   * all the files in the directory represented by this object. If this   * object does not represent a directory, <code>null</code> is returned.   * Each of the returned <code>File</code> object is constructed with this   * object as its parent.   * <p>    * In this form of the <code>listFiles()</code> method, a filter is specified   * that allows the caller to control which files are returned in the   * list.  The <code>FileFilter</code> specified is called for each   * file returned to determine whether or not that file should be included   * in the list.   * <p>   * A <code>SecurityManager</code> check is made prior to reading the   * directory.  If read access to the directory is denied, an exception   * will be thrown.   *   * @return An array of <code>File</code> objects for this directory.   *   * @exception SecurityException If the <code>SecurityManager</code> denies   * access to this directory.   *   * @since 1.2   */  public File[] listFiles(FileFilter filter)  {    checkRead();    return (File[]) performList (null, filter, File.class);  }  /**   * This method returns a <code>String</code> that is the path name of the   * file as returned by <code>getPath</code>.   *   * @return A <code>String</code> representation of this file   */  public String toString()  {    return path;  }  /**   * @return A <code>URI</code> for this object.   */  public URI toURI()  {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一区二区三区四区在线免费观看 | 亚洲国产成人精品视频| 狠狠色综合日日| 欧美电影免费提供在线观看| 洋洋av久久久久久久一区| 色久综合一二码| 视频一区二区国产| 蜜臀a∨国产成人精品| 日本美女视频一区二区| 精品国产一区二区亚洲人成毛片| 亚洲综合男人的天堂| 免费成人性网站| 成人激情动漫在线观看| 欧美综合色免费| 亚洲精品在线一区二区| 93久久精品日日躁夜夜躁欧美| 一区二区三区日韩欧美精品| 91精选在线观看| 亚洲欧美一区二区久久| 欧美成人一区二区三区在线观看| 国产a视频精品免费观看| 色视频欧美一区二区三区| 久久aⅴ国产欧美74aaa| 99久久精品一区| 欧美国产日韩a欧美在线观看| 95精品视频在线| 中文字幕高清不卡| 久久99精品网久久| 欧美喷水一区二区| 午夜久久久久久久久久一区二区| 欧美mv日韩mv亚洲| 天天av天天翘天天综合网色鬼国产| 国产亚洲美州欧州综合国| 日韩美女视频一区二区在线观看| 在线看国产一区| 亚洲欧洲另类国产综合| 国产三级精品在线| 久久99精品久久久久久| ...中文天堂在线一区| 成人va在线观看| 中文字幕一区二区三区精华液| 亚洲国产高清不卡| 成人av网站在线观看免费| 国产91精品欧美| 中文字幕日韩一区| 久久天堂av综合合色蜜桃网| 中文字幕永久在线不卡| 日韩电影在线看| 精品伦理精品一区| 91丨porny丨国产| 久久99国产精品麻豆| 久久久久国产精品厨房| 成人免费视频一区| 免费成人结看片| 国产成人丝袜美腿| 亚洲一二三四在线观看| 久久午夜羞羞影院免费观看| av电影天堂一区二区在线| 一区二区三区四区在线| 国产精品一区二区视频| 亚洲精品v日韩精品| 欧美国产一区视频在线观看| 88在线观看91蜜桃国自产| 国产精品免费av| 91精品国产综合久久久久| 99免费精品视频| 亚洲国产精品国自产拍av| 欧美一区二区三区免费观看视频| 亚洲色图视频网站| 亚洲日本va午夜在线影院| 精品国产91洋老外米糕| 欧美一级生活片| 久久亚洲欧美国产精品乐播| 91精品久久久久久蜜臀| 69堂国产成人免费视频| 在线观看一区二区精品视频| 亚洲欧洲无码一区二区三区| 中文字幕一区二区三区不卡在线| 粉嫩在线一区二区三区视频| 国产主播一区二区三区| 欧美一区二视频| 国产日韩欧美精品一区| 中文字幕亚洲区| 爽爽淫人综合网网站| 麻豆精品一区二区三区| 日韩免费观看高清完整版 | 久久精品视频在线免费观看| 欧美成人女星排名| 国产精品久久久久久久久免费桃花 | 成人美女在线视频| 不卡区在线中文字幕| 欧美日韩国产片| 国产成人综合亚洲91猫咪| 亚洲国产色一区| 国产麻豆精品在线| 欧美日韩成人综合| 国产免费观看久久| 麻豆免费看一区二区三区| 成人午夜激情影院| 欧美一区二区三区人| 亚洲一区二区三区激情| 国产成人自拍高清视频在线免费播放 | 7777女厕盗摄久久久| 国产精品久久久久久亚洲毛片| 欧美久久免费观看| 一色桃子久久精品亚洲| 国产成人精品网址| 高清不卡一区二区在线| 在线亚洲免费视频| 欧美一区二区久久| 国产成人精品一区二区三区四区| 日韩电影在线免费观看| 欧美性色黄大片| 欧美另类videos死尸| 亚洲国产综合人成综合网站| 色综合色狠狠综合色| 成人黄色电影在线| 精品精品欲导航| 国产成人精品亚洲777人妖 | 欧美日韩国产123区| 9191久久久久久久久久久| 日韩av电影天堂| www激情久久| 色香蕉久久蜜桃| 这里只有精品电影| 激情六月婷婷综合| 国产精品免费丝袜| 亚洲乱码国产乱码精品精可以看| 视频一区二区三区入口| 日韩欧美一级在线播放| 精品福利视频一区二区三区| 成人丝袜高跟foot| 另类综合日韩欧美亚洲| 99精品视频在线观看免费| 亚洲午夜电影网| 国产精品第13页| 久久综合狠狠综合| 欧美日韩一区二区三区在线 | 一区二区三区资源| 国产自产2019最新不卡| 亚洲国产精品人人做人人爽| 中文字幕不卡在线播放| 日韩女优视频免费观看| 欧美日韩一区三区| 欧美性高清videossexo| 亚洲激情网站免费观看| 国产精品国产三级国产aⅴ中文 | 亚洲免费看黄网站| 成人网在线播放| 丁香激情综合五月| 丁香天五香天堂综合| av亚洲精华国产精华| 国产一区欧美一区| 久久99精品久久久久久动态图| 欧美一级日韩一级| 26uuu色噜噜精品一区二区| 91精品视频网| 国产欧美一区二区三区网站| 日韩欧美在线综合网| 久久婷婷一区二区三区| 2017欧美狠狠色| 亚洲欧美在线观看| 亚洲自拍偷拍欧美| 久久99精品国产麻豆不卡| 国产性色一区二区| 亚洲视频 欧洲视频| 亚洲v中文字幕| 粉嫩久久99精品久久久久久夜| 中文字幕亚洲综合久久菠萝蜜| 91福利在线播放| 欧美大片拔萝卜| 亚洲一区二区三区四区中文字幕 | 天堂一区二区在线免费观看| 免费日韩伦理电影| 91久久国产最好的精华液| 欧美sm美女调教| 日韩精品一级中文字幕精品视频免费观看 | 国产精品成人免费精品自在线观看| 成人黄色av网站在线| 欧美福利一区二区| 亚洲国产精品一区二区尤物区| 久久看人人爽人人| 国产主播一区二区三区| 欧美军同video69gay| 天堂蜜桃一区二区三区 | 日本一区二区电影| 欧美猛男超大videosgay| 自拍偷在线精品自拍偷无码专区 | 婷婷国产v国产偷v亚洲高清| 99久久夜色精品国产网站| 国产精品蜜臀在线观看| 粉嫩久久99精品久久久久久夜| 国内成+人亚洲+欧美+综合在线| 亚洲成人www| 日韩精品一区二区三区蜜臀| 麻豆91精品91久久久的内涵| 日韩欧美亚洲国产另类| 精品无码三级在线观看视频| 国产精品久久三| 欧美日韩成人综合在线一区二区 |