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 中国語 Web サイトの他の関連記事を参照してください。