在C# 中操作檔案路徑時,開發人員經常使用System.IO.Path.Combine() 方法將多個字串連接成一個字符串小路。 Java 是否提供類似的功能?
Java 提供了專門用於表示檔案系統路徑的健全類,而不是僅僅依賴字串。
Java 7 :
對於 Java 7 及更高版本,java.nio.file.Path 類別提供了resolve() 方法。它有效地將路徑或路徑與字串組合在一起:
<code class="java">Path path = Paths.get("foo", "bar", "baz.txt");</code>
Pre-Java 7:
對於早期的Java 版本,java.io. File 類別提供路徑操作功能:
<code class="java">File baseDirectory = new File("foo"); File subDirectory = new File(baseDirectory, "bar"); File fileInDirectory = new File(subDirectory, "baz.txt");</code>
如果需要將建構的路徑轉換回字串,請使用getPath() 方法:
<code class="java">String pathAsString = fileInDirectory.getPath();</code>
要模擬C# 中的Path.Combine() 行為,您可以建立自訂函數:
<code class="java">public static String combine(String path1, String path2) { File file1 = new File(path1); File file2 = new File(file1, path2); return file2.getPath(); }</code>
以上是Java 如何像 C# 的 System.IO.Path.Combine() 一樣組合路徑?的詳細內容。更多資訊請關注PHP中文網其他相關文章!