1. 程式人生 > >FileSystem和Files.copy 操作注意點

FileSystem和Files.copy 操作注意點

try(                     FileSystem fileSystem= FileSystems.newFileSystem(Paths.get("D://1234567/3.0/480P/480P.itz"), null);                     ){             Path zipXmlPath =fileSystem.getPath("/description.xml");             Path path = Paths.get("D://description.xml");             InputStream in = new FileInputStream(path.toFile());             Files.copy(in,zipXmlPath, StandardCopyOption.REPLACE_EXISTING);             }

需要注意按照try(   ){  }的格式寫,要不流不會關閉