Here you can find the source of getPathLastIndex(String fileName)
public static int getPathLastIndex(String fileName)
//package com.java2s; public class Main { public static int getPathLastIndex(String fileName) { int point = fileName.lastIndexOf('/'); if (point == -1) { point = fileName.lastIndexOf('\\'); }//from w w w. ja v a 2 s . c o m return point; } public static int getPathLastIndex(String fileName, int fromIndex) { int point = fileName.lastIndexOf('/', fromIndex); if (point == -1) { point = fileName.lastIndexOf('\\', fromIndex); } return point; } }