Exact Duplicate:
I would like to know if there is such a method in Java. Take this snippet as example :
// this will output a/b
System.out.println(path_join("a","b"));
// a/b
System.out.println(path_join("a","/b");
Exact Duplicate:I would like to know if there is such a method in Java. Take this snippet as example :
|
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
To quote a good answer to the same question: If you want it back as a string later, you can call getPath(). Indeed, if you really wanted to mimic Path.Combine, you could just write something like:
|
||||
|
|
|
You can just do
|
|||||||
|
|
This is a start, I don't think it works exactly as you intend, but it at least produces a consistent result.
|
|||
|
|
|
One way is to get system properties that give you the path separator for the operating system, this tutorial explains how. You can then use a standard string join using the |
|||
|
|