C#/ .NET中是否存在System.IO.Path.Combine()
的Java等价物?或任何代码来实现这一目标?
此静态方法将一个或多个字符串组合到路径中。
答案 0 :(得分:360)
您应该使用一个旨在表示文件系统路径的类,而不是保持所有基于字符串的类。
如果您使用的是Java 7或Java 8,则应强烈考虑使用java.nio.file.Path
; Path.resolve
可用于将一个路径与另一个路径或字符串组合在一起。 Paths
助手类也很有用。例如:
Path path = Paths.get("foo", "bar", "baz.txt");
如果您需要迎合Java-7之前的环境,可以使用java.io.File
,如下所示:
File baseDirectory = new File("foo");
File subDirectory = new File(baseDirectory, "bar");
File fileInDirectory = new File(subDirectory, "baz.txt");
如果您希望以后再将其作为字符串,则可以致电getPath()
。实际上,如果你真的想模仿Path.Combine
,你可以写下类似的东西:
public static String combine(String path1, String path2)
{
File file1 = new File(path1);
File file2 = new File(file1, path2);
return file2.getPath();
}
答案 1 :(得分:89)
在Java 7中,您应该使用resolve
:
Path newPath = path.resolve(childPath);
虽然NIO2 Path类对于File来说似乎有点多余,但是它有一个不必要的不同API,但它实际上更加优雅和健壮。
请注意,Paths.get()
(由其他人建议)没有超载Path
,而Paths.get(path.toString(), childPath)
与resolve()
不同。来自Paths.get()
docs:
请注意,虽然此方法非常方便,但使用它会暗示对默认FileSystem的假定引用并限制调用代码的实用程序。因此,它不应该在用于灵活重用的库代码中使用。更灵活的替代方法是使用现有的Path实例作为锚点,例如:
Path dir = ... Path path = dir.resolve("file");
resolve
的姐妹函数非常出色relativize
:
Path childPath = path.relativize(newPath);
答案 2 :(得分:42)
主要答案是使用File对象。但是,Commons IO确实有一个类FilenameUtils可以执行此类操作,例如concat()方法。
答案 3 :(得分:14)
我知道自Jon的原始答案以来很长一段时间,但我对OP有类似的要求。
通过扩展Jon的解决方案,我提出了以下内容,它将占用一个或多个路径段,从而可以获取尽可能多的路径段。
<强>用法强>
Path.combine("/Users/beardtwizzle/");
Path.combine("/", "Users", "beardtwizzle");
Path.combine(new String[] { "/", "Users", "beardtwizzle", "arrayUsage" });
此处针对具有类似问题的其他人编码
public class Path {
public static String combine(String... paths)
{
File file = new File(paths[0]);
for (int i = 1; i < paths.length ; i++) {
file = new File(file, paths[i]);
}
return file.getPath();
}
}
答案 4 :(得分:11)
为了增强JodaStephen的答案,Apache Commons IO有FilenameUtils这样做。示例(在Linux上):
assert org.apache.commons.io.FilenameUtils.concat("/home/bob", "work\\stuff.log") == "/home/bob/work/stuff.log"
它与平台无关,可以生成系统所需的任何分隔符。
答案 5 :(得分:2)
如果您不需要多个字符串,则可以使用com.google.common.io.Files
Files.simplifyPath("some/prefix/with//extra///slashes" + "file//name")
获取
"some/prefix/with/extra/slashes/file/name"
答案 6 :(得分:0)
这是一个处理多个路径部分和边缘条件的解决方案:
public static String combinePaths(String ... paths)
{
if ( paths.length == 0)
{
return "";
}
File combined = new File(paths[0]);
int i = 1;
while ( i < paths.length)
{
combined = new File(combined, paths[i]);
++i;
}
return combined.getPath();
}
答案 7 :(得分:0)
也许晚会,但是我想分享我对此的看法。我正在使用构建器模式,并允许方便地链接append
调用。还可以轻松扩展它以支持使用Path
对象。
public class Files {
public static class PathBuilder {
private File file;
private PathBuilder ( File root ) {
file = root;
}
private PathBuilder ( String root ) {
file = new File(root);
}
public PathBuilder append ( File more ) {
file = new File(file, more.getPath()) );
return this;
}
public PathBuilder append ( String more ) {
file = new File(file, more);
return this;
}
public File buildFile () {
return file;
}
}
public static PathBuilder buildPath ( File root ) {
return new PathBuilder(root);
}
public static PathBuilder buildPath ( String root ) {
return new PathBuilder(root);
}
}
用法示例:
File root = File.listRoots()[0];
String hello = "hello";
String world = "world";
String filename = "warez.lha";
File file = Files.buildPath(root).append(hello).append(world)
.append(filename).buildFile();
String absolute = file.getAbsolutePath();
生成的absolute
将包含以下内容:
/hello/world/warez.lha
甚至:
A:\hello\world\warez.lha
答案 8 :(得分:0)
这在Java 8中也适用:
Path file = Paths.get("Some path");
file = Paths.get(file + "Some other path");
答案 9 :(得分:0)
此解决方案提供了一个接口,用于连接String []数组中的路径片段。它使用 java.io.File.File(String parent,String child):
public static joinPaths(String[] fragments) {
String emptyPath = "";
return buildPath(emptyPath, fragments);
}
private static buildPath(String path, String[] fragments) {
if (path == null || path.isEmpty()) {
path = "";
}
if (fragments == null || fragments.length == 0) {
return "";
}
int pathCurrentSize = path.split("/").length;
int fragmentsLen = fragments.length;
if (pathCurrentSize <= fragmentsLen) {
String newPath = new File(path, fragments[pathCurrentSize - 1]).toString();
path = buildPath(newPath, fragments);
}
return path;
}
然后您可以做:
String[] fragments = {"dir", "anotherDir/", "/filename.txt"};
String path = joinPaths(fragments);
返回:
"/dir/anotherDir/filename.txt"
答案 10 :(得分:0)
假设所有给定的路径都是绝对路径。您可以按照以下代码段合并这些路径。
String baseURL = "\\\\host\\testdir\\";
String absoluteFilePath = "\\\\host\\testdir\\Test.txt";;
String mergedPath = Paths.get(baseURL, absoluteFilePath.replaceAll(Matcher.quoteReplacement(baseURL), "")).toString();
输出路径为\\host\testdir\Test.txt。