在 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中文网其他相关文章!