在Java 1.6 中確定符號連結
在Unix 系統上運行的Java 程式中,區分實際目錄和符號連結至關重要。本題探討了一種使用特定條件來辨識目錄符號連結的方法。
問題:
在DirectoryWalker 類別的上下文中,是否可以使用以下方法準確地確定已知目錄實例是否表示符號連結:
<code class="java">if (file.getAbsolutePath().equals(file.getCanonicalPath())) { // real directory ---> do normal stuff } else { // possible symbolic link ---> do link stuff }</code>
答案:
雖然提供的方法是識別可能的符號連結的常用技術,由於以下原因,它不能被認為是可靠的:
而不是依賴絕對路徑和規範路徑檔案本身,建議使用父目錄的規範路徑。這種方法在識別符號連結方面更加準確。
以下是 Apache Commons 中實作此技術的範例:
<code class="java">public static boolean isSymlink(File file) throws IOException { if (file == null) throw new NullPointerException("File must not be null"); File canon; if (file.getParent() == null) { canon = file; } else { File canonDir = file.getParentFile().getCanonicalFile(); canon = new File(canonDir, file.getName()); } return !canon.getCanonicalFile().equals(canon.getAbsoluteFile()); }</code>
以上是比較 `getAbsolutePath()` 和 `getCanonicalPath()` 是否是確定 Java 1.6 中的目錄是否為符號連結的可靠方法?的詳細內容。更多資訊請關注PHP中文網其他相關文章!