All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fartherp.framework.common.util.PathUtils 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 PathUtils {

    /**
     * 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