Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    static String getLastPathElement(String relativePath) {
        String[] pathComponents = relativePath.split("/");
        if (pathComponents.length == 0)
            return null;
        return pathComponents[pathComponents.length - 1];
    }
}