Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static String getDownloadFileName(String downloadURL) {
        int index = downloadURL.lastIndexOf("/") + 1;
        String fileName = downloadURL.substring(index);
        return fileName;
    }
}