Android Converting .NET Path.Combine to java?
We are converting apps to Android from .NET
Is there a 开发者_如何学CJava equivalent of the .NET Path.Combine() function?
Currently we check the / on each folder etc before building paths.
import java.io.File;
// ...
public static String pathCombine(String path1, String path2)
{
File parent = new File(path1);
File child = new File(parent, path2);
return child.getPath();
}
精彩评论