您好,登錄后才能下訂單哦!
這篇文章主要講解了“Java Files和Paths怎么使用demo”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Java Files和Paths怎么使用demo”吧!
Java Files和Paths是Java 7中引入的新API,用于處理文件和目錄。Files類提供了許多有用的靜態方法來操作文件和目錄,而Path類則表示文件系統中的路徑。
在Java中創建文件和目錄非常簡單。我們可以使用Files類的createFile()方法和createDirectory()方法來創建文件和目錄
示例:
import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.io.IOException; public class CreateFileAndDirectory { public static void main(String[] args) throws IOException { //文件 Path pathToFile = Paths.get("example.txt"); //目錄 Path pathToDir = Paths.get("exampleDir"); //多級目錄 Path pathDirectories = Paths.get("java\exampleDir\pathDirectories\dir"); // 創建文件 try { Files.createFile(pathToFile); } catch (IOException e) { throw new RuntimeException(e); } // 創建目錄 try { Files.createDirectory(pathToDir); } catch (IOException e) { throw new RuntimeException(e); } //創建多級目錄 try { Files.createDirectories(pathDirectories); } catch (IOException e) { throw new RuntimeException(e); } } }
上面的代碼會創建一個名為“example.txt”的文件和一個名為“exampleDir”的目錄。如果文件或目錄已經存在,這些方法將拋出異常。
createDirectories方法會創建多級目錄,上級目錄不存在的話,直接創建。
Java提供了多種方式來寫入文件。我們可以使用Files類的write()方法來將數據寫入文件。
示例:
import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.io.IOException; import java.util.Arrays; public class WriteToFile { public static void main(String[] args) throws IOException { Path path = Paths.get("example.txt"); // 寫入字節數組 byte[] bytes = "Hello, world!".getBytes(); try { Files.write(path, bytes); } catch (IOException e) { throw new RuntimeException(e); } // 寫入字符串 String text = "Hello, world!"; try { Files.write(path, text.getBytes()); } catch (IOException e) { throw new RuntimeException(e); } // 寫入字符串列表 Iterable<String> lines = Arrays.asList("line 1", "line 2", "line 3"); try { Files.write(path, lines); } catch (IOException e) { throw new RuntimeException(e); } } }
上面的代碼將數據寫入“example.txt”文件。我們可以使用write()方法將字節數組、字符串或字符串列表寫入文件。
Java提供了多種方式來讀取文件。我們可以使用Files類的readAllBytes()方法、readAllLines()方法或newBufferedReader()方法來讀取文件。
import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.io.IOException; import java.util.List; public class ReadFromFile { public static void main(String[] args) throws IOException { Path path = Paths.get("example.txt"); // 讀取字節數組 byte[] bytes = Files.readAllBytes(path); System.out.println(new String(bytes)); // 讀取字符串列表 List<String> lines = Files.readAllLines(path); // 使用BufferedReader讀取文件 BufferedReader reader = Files.newBufferedReader(path); String line = null; while ((line = reader.readLine()) != null
刪除文件或目錄可以使用Files類的delete()方法。
// 刪除一個文件 Path fileToDeletePath = Paths.get("fileToDelete.txt"); try { Files.delete(fileToDeletePath); System.out.println("文件刪除成功"); } catch (IOException e) { System.out.println("文件刪除失敗"); } // 刪除一個目錄 Path dirToDeletePath = Paths.get("dirToDelete"); try { Files.delete(dirToDeletePath); System.out.println("目錄刪除成功"); } catch (IOException e) { System.out.println("目錄刪除失敗"); } //如果文件存在才刪除,不會拋出異常 try { //返回布爾值 Files.deleteIfExists("dirToDelete/dir"); } catch (IOException e) { throw new RuntimeException(e); }
復制文件
// 復制一個文件 //資源地址 Path sourceFilePath = Paths.get("sourceFile.txt"); //目標地址 Path targetFilePath = Paths.get("targetFile.txt"); try { Files.copy(sourceFilePath, targetFilePath,StandardCopyOption.REPLACE_EXISTING); System.out.println("文件復制成功"); } catch (IOException e) { System.out.println("文件復制失敗:" + e.getMessage()); }
復制目錄
// 復制一個目錄 Path sourceDirPath = Paths.get("C:/Users/username/Desktop/sourceDir"); Path targetDirPath = Paths.get("C:/Users/username/Desktop/targetDir"); try { //CopyFileVisitor是需要自己實現的 Files.walkFileTree(sourceDirPath, new CopyFileVisitor(sourceDirPath, targetDirPath)); System.out.println("目錄復制成功"); } catch (IOException e) { System.out.println("目錄復制失敗:" + e.getMessage()); }
CopyFileVisitor
import java.io.IOException; import java.nio.file.*; import java.nio.file.attribute.BasicFileAttributes; public class CopyFileVisitor extends SimpleFileVisitor<Path> { private final Path sourceDir; private final Path targetDir; public CopyFileVisitor(Path sourceDir, Path targetDir) { this.sourceDir = sourceDir; this.targetDir = targetDir; } @Override public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException { Path targetPath = targetDir.resolve(sourceDir.relativize(dir)); try { Files.copy(dir, targetPath); } catch (FileAlreadyExistsException e) { if (!Files.isDirectory(targetPath)) { throw e; } } return FileVisitResult.CONTINUE; } @Override public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException { Path targetPath = targetDir.resolve(sourceDir.relativize(file)); Files.copy(file, targetPath, StandardCopyOption.REPLACE_EXISTING); return FileVisitResult.CONTINUE; } }
在preVisitDirectory()方法中,我們將源目錄下的子目錄逐個創建到目標目錄中。在創建過程中,我們使用Files.copy()方法將目錄復制到目標目錄中。由于目標目錄可能已經存在,因此我們在Files.copy()方法中使用了FileAlreadyExistsException異常進行處理。
在visitFile()方法中,我們將源目錄下的文件逐個復制到目標目錄中。在復制過程中,我們使用Files.copy()方法將文件復制到目標目錄中,并使用StandardCopyOption.REPLACE_EXISTING選項替換現有文件。
移動或重命名
try { //這個操作可以做移動或重命名 Files.move(Paths.get("source.txt"),Paths.get("target.txt"), StandardCopyOption.REPLACE_EXISTING); } catch (IOException e) { throw new RuntimeException(e); }
遍歷目錄
Path start = Paths.get("sourceDir"); int maxDepth = Integer.MAX_VALUE; try { Files.walk(start, maxDepth).forEach(System.out::println); } catch (IOException e) { throw new RuntimeException(e); }
該方法接受三個參數:
start:表示要遍歷的根目錄的路徑。
maxDepth:表示要遍歷的最大深度。如果maxDepth為0,則只遍歷根目錄,不遍歷其子目錄。如果maxDepth為正整數,則遍歷根目錄和所有深度不超過maxDepth的子目錄。如果maxDepth為負數,則遍歷根目錄和所有子目錄。
options:表示遍歷選項。可選項包括FileVisitOption.FOLLOW_LINKS和FileVisitOption.NOFOLLOW_LINKS。
如果選擇FOLLOW_LINKS選項,則遍歷符號鏈接指向的目錄;
如果選擇NOFOLLOW_LINKS選項,則遍歷符號鏈接本身
獲取文件屬性
try { Path path = Paths.get("F:\\java\\2.txt").toAbsolutePath(); System.out.println("文件是否存在: " + Files.exists(path)); System.out.println("是否是目錄: " + Files.isDirectory(path)); System.out.println("是否是可執行文件: " + Files.isExecutable(path)); System.out.println("是否可讀: " + Files.isReadable(path)); System.out.println("判斷是否是一個文件: " + Files.isRegularFile(path)); System.out.println("是否可寫: " + Files.isWritable(path)); System.out.println("文件是否不存在: " + Files.notExists(path)); System.out.println("文件是否隱藏: " + Files.isHidden(path)); System.out.println("文件大小: " + Files.size(path)); System.out.println("文件存儲在SSD還是HDD: " + Files.getFileStore(path)); System.out.println("文件修改時間:" + Files.getLastModifiedTime(path)); System.out.println("文件擁有者: " + Files.getOwner(path)); System.out.println("文件類型: " + Files.probeContentType(path)); } catch (IOException e) { throw new RuntimeException(e); }
感謝各位的閱讀,以上就是“Java Files和Paths怎么使用demo”的內容了,經過本文的學習后,相信大家對Java Files和Paths怎么使用demo這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。