com.github.fartherp.framework.common.util.PathUtil Maven / Gradle / Ivy
/*
* Copyright (c) 2017. CK. All rights reserved.
*/
package com.github.fartherp.framework.common.util;
import java.io.File;
/**
* 路径工具类
* Author: CK
* Date: 2016/1/17
*/
public class PathUtil {
/**
* Join.
*
* @param base the base
* @param path the path
* @return the string
*/
public static String join(String base, String path) {
return new File(base, path).getPath();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy