爲什麼會發生這種情況?java nio路徑無法處理windows網絡路徑
def path=java.nio.file.Paths.get("c:/kittuhomestore/Csmart/files/companies");
path.getNameCount();
4
def path=java.nio.file.Paths.get("//kittuhomestore/Csmart/files/companies");
path.getNameCount();
2
後者是一個Windows共享網絡驅動器。
好像'/ kittuhomestore/Csmart'是網絡路徑,'/ files'是根目錄,'/ companies'是其中的一個目錄。 –