在Java 中組合路徑
C#/.NET for Java 中的System.IO.Path.Combine() 等效項是Path Java 7 中引入並在Java 8 中擴充的類別。 Path 類別提供檔案系統路徑的類型安全表示,提供諸如解析之類的方法來組合多個路徑元件。
要使用Path 組合路徑,透過提供多個字串參數來實例化Path 物件:
<code class="java">Path path = Paths.get("foo", "bar", "baz.txt");</code>
對於Java 7 之前的環境,您可以使用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 combinedPath = fileInDirectory.getPath();</code>
或者,您可以使用以下自訂方法來模擬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中使用路徑類別或自訂方法組合路徑?的詳細內容。更多資訊請關注PHP中文網其他相關文章!