Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    protected static String getDirPath(String dir) {
        int index = dir.lastIndexOf("/");
        String path;
        if (index > 0) {
            path = dir.substring(0, index);
        } else {
            path = "";
        }
        return path;
    }
}