Here you can find the source of getRelativePath(File parent, File file)
public static String getRelativePath(File parent, File file)
//package com.java2s; import java.io.File; public class Main { public static String getRelativePath(File parent, File file) { return file.getAbsolutePath().substring( parent.getAbsolutePath().length() + 1); }/*from ww w. j ava2 s .c om*/ }