Java tutorial
//package com.java2s; import android.text.TextUtils; public class Main { public static String getServerFileName(String serverPath) { String fileName = null; if (serverPath != null && !TextUtils.isEmpty(serverPath)) { int index = serverPath.lastIndexOf("/"); if (index != -1) { fileName = serverPath.substring(index + 1); } } return fileName; } }