为什么分隔符会被 Path parentPath = Paths.get(strPath) 改变?
Why does the separator get changed by Path parentPath = Paths.get(strPath)?
在我的 Windows 应用程序中,我想使用 SimpleFileVisitor<Path>
删除服务器上具有 FTP 的目录结构。它因 "File not found" 而失败,因为在下面的代码中,分隔符更改为反斜杠。显然,服务器希望它是正斜杠。我怎样才能让它保持正斜杠的形式?
public class FTPTest {
static String server ;
static int port ;
static String user ;
static String pass;
static FTPClient theFtpClient;
public FTPTest(){
server = "nx.dnslinks.net";
port = 21;
user = "xxxx";
pass = "#xxxxx";
theFtpClient = new FTPClient();
}
static void deleteDirectoryWalkTree(Path path) throws IOException {
FileVisitor visitor = new SimpleFileVisitor<Path>() {
@Override
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
Files.delete(file);
return FileVisitResult.CONTINUE;
}
@Override
public FileVisitResult visitFileFailed(Path file, IOException exc) throws IOException {
Files.delete(file);
return FileVisitResult.CONTINUE;
}
@Override
public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
if (exc != null) {
throw exc;
}
Files.delete(dir);
return FileVisitResult.CONTINUE;
}
};
Files.walkFileTree(path, visitor);
}
public static void main(String[] args) {
FTPTest theFTPTest = new FTPTest();
Path Path = Paths.get("/httpdocs/manual-uploads/TestingFTPUtil/SubDir_1/SubDir_2");
try {
theFTPTest.deleteDirectoryWalkTree(Path);
} catch (IOException ex) {
Logger.getLogger(FTPTest.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
Path
/Paths
类 将您的代码与 local 操作系统的路径语法隔离。
虽然您想使用 远程 FTP 系统的路径,但它可能(确实)使用不同的语法。并且主要是相同的语法,无论您的代码恰好在哪个本地操作系统上 运行。
因此您不应将 Path
/Paths
类 用于 FTP 路径。
在我的 Windows 应用程序中,我想使用 SimpleFileVisitor<Path>
删除服务器上具有 FTP 的目录结构。它因 "File not found" 而失败,因为在下面的代码中,分隔符更改为反斜杠。显然,服务器希望它是正斜杠。我怎样才能让它保持正斜杠的形式?
public class FTPTest {
static String server ;
static int port ;
static String user ;
static String pass;
static FTPClient theFtpClient;
public FTPTest(){
server = "nx.dnslinks.net";
port = 21;
user = "xxxx";
pass = "#xxxxx";
theFtpClient = new FTPClient();
}
static void deleteDirectoryWalkTree(Path path) throws IOException {
FileVisitor visitor = new SimpleFileVisitor<Path>() {
@Override
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
Files.delete(file);
return FileVisitResult.CONTINUE;
}
@Override
public FileVisitResult visitFileFailed(Path file, IOException exc) throws IOException {
Files.delete(file);
return FileVisitResult.CONTINUE;
}
@Override
public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
if (exc != null) {
throw exc;
}
Files.delete(dir);
return FileVisitResult.CONTINUE;
}
};
Files.walkFileTree(path, visitor);
}
public static void main(String[] args) {
FTPTest theFTPTest = new FTPTest();
Path Path = Paths.get("/httpdocs/manual-uploads/TestingFTPUtil/SubDir_1/SubDir_2");
try {
theFTPTest.deleteDirectoryWalkTree(Path);
} catch (IOException ex) {
Logger.getLogger(FTPTest.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
Path
/Paths
类 将您的代码与 local 操作系统的路径语法隔离。
虽然您想使用 远程 FTP 系统的路径,但它可能(确实)使用不同的语法。并且主要是相同的语法,无论您的代码恰好在哪个本地操作系统上 运行。
因此您不应将 Path
/Paths
类 用于 FTP 路径。